|
|
@ -2,6 +2,12 @@ |
|
|
|
#include <stdlib.h> |
|
|
|
#include <time.h> |
|
|
|
|
|
|
|
int gib_zufallszahl() { |
|
|
|
srand(time(NULL)); |
|
|
|
int zahl = rand() % 100 + 1; |
|
|
|
return zahl; |
|
|
|
} |
|
|
|
|
|
|
|
void leistung(int versuch, int leistung_toll, int leistung_ok) { |
|
|
|
if (versuch <= leistung_toll) { |
|
|
|
printf("Tolle Leistung!"); |
|
|
@ -16,9 +22,7 @@ void leistung(int versuch, int leistung_toll, int leistung_ok) { |
|
|
|
|
|
|
|
void run_zahlenraten() { |
|
|
|
|
|
|
|
srand(time(NULL)); |
|
|
|
|
|
|
|
int zahl = rand() % 100 + 1; |
|
|
|
int zahl = gib_zufallszahl(); |
|
|
|
|
|
|
|
int leistung_toll = 3; |
|
|
|
int leistung_ok = 7; |
|
|
|