|
|
@ -28,9 +28,9 @@ int Modus1() { |
|
|
|
int Stand1 = 0, Stand2 = 0; |
|
|
|
char ende[10] = "Weiter"; |
|
|
|
int n; |
|
|
|
char Mensch[50]; |
|
|
|
printf("\t\t\t\tName Mensch/in: "); |
|
|
|
scanf("%s", Mensch); |
|
|
|
char Spieler[50]; |
|
|
|
printf("\t\t\t\tName Spieler/in: "); |
|
|
|
scanf("%s", Spieler); |
|
|
|
while (ende[0] == 'W' || ende[0] == 'w') { |
|
|
|
char you = 'Y', computer, Lösung; |
|
|
|
srand(time(NULL)); |
|
|
@ -66,7 +66,7 @@ int Modus1() { |
|
|
|
|
|
|
|
|
|
|
|
printf("\t\t\t\tDu hast ausgesucht : %c und Computer hat ausgesucht : %c\n\n", you, computer); |
|
|
|
printf("\t\t\t\tPunktestand: %s - %d, Computer - %d\n\n", Mensch, Stand1, Stand2); |
|
|
|
printf("\t\t\t\tPunktestand: %s - %d, Computer - %d\n\n", Spieler, Stand1, Stand2); |
|
|
|
printf("\t\t\t\tMoechten Sie weiter spielen oder beenden? (Weiter/Ende)\n\t\t\t\t"); |
|
|
|
scanf("%s", ende); |
|
|
|
#ifdef _WIN32 |
|
|
@ -83,9 +83,9 @@ int Modus2() { |
|
|
|
char ende[10] = "Weiter"; |
|
|
|
int Lösung; |
|
|
|
int Stand1 = 0, Stand2 = 0; |
|
|
|
printf("\t\t\t\tName Mensch 1: "); |
|
|
|
printf("\t\t\t\tName Spieler 1: "); |
|
|
|
scanf("%s", Spieler1); |
|
|
|
printf("\n\t\t\t\tName Mensch 2: "); |
|
|
|
printf("\n\t\t\t\tName Spieler 2: "); |
|
|
|
scanf("%s", Spieler2); |
|
|
|
while (ende[0] == 'W' || ende[0] == 'w') { |
|
|
|
char wahl1 = '0', wahl2 = '0'; |
|
|
@ -122,7 +122,7 @@ int Modus2() { |
|
|
|
|
|
|
|
int Start() { |
|
|
|
int Frage; |
|
|
|
printf("Spielmodus waehlen:\n[1] Computer\n[2] 2 Mensch\n"); |
|
|
|
printf("Spielmodus waehlen:\n[1] Computer\n[2] 2 Spieler\n"); |
|
|
|
scanf("%d", &Frage); |
|
|
|
switch (Frage) { |
|
|
|
case 1: Modus1(); break; |
|
|
|