|
@ -79,14 +79,14 @@ return 0; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
int Modus2() { |
|
|
int Modus2() { |
|
|
char Spieler1[50], Mensch2[50]; |
|
|
|
|
|
|
|
|
char Spieler1[50], Spieler2[50]; |
|
|
char ende[10] = "Weiter"; |
|
|
char ende[10] = "Weiter"; |
|
|
int Lösung; |
|
|
int Lösung; |
|
|
int Stand1 = 0, Stand2 = 0; |
|
|
int Stand1 = 0, Stand2 = 0; |
|
|
printf("\t\t\t\tName Mensch 1: "); |
|
|
printf("\t\t\t\tName Mensch 1: "); |
|
|
scanf("%s", Spieler1); |
|
|
scanf("%s", Spieler1); |
|
|
printf("\n\t\t\t\tName Mensch 2: "); |
|
|
printf("\n\t\t\t\tName Mensch 2: "); |
|
|
scanf("%s", Mensch2); |
|
|
|
|
|
|
|
|
scanf("%s", Spieler2); |
|
|
while (ende[0] == 'W' || ende[0] == 'w') { |
|
|
while (ende[0] == 'W' || ende[0] == 'w') { |
|
|
char wahl1 = '0', wahl2 = '0'; |
|
|
char wahl1 = '0', wahl2 = '0'; |
|
|
while (wahl1 != '3' && wahl1 != '1' && wahl1 != '2') { |
|
|
while (wahl1 != '3' && wahl1 != '1' && wahl1 != '2') { |
|
@ -99,7 +99,7 @@ int Modus2() { |
|
|
system("clear"); |
|
|
system("clear"); |
|
|
#endif |
|
|
#endif |
|
|
while (wahl2 != '3' && wahl2 != '1' && wahl2 != '2') { |
|
|
while (wahl2 != '3' && wahl2 != '1' && wahl2 != '2') { |
|
|
printf("\n\t\t\t\t%s, waehlen Sie 1 fuer Schere, 2 fuer Stein oder 3 fuer Papier: ", Mensch2); |
|
|
|
|
|
|
|
|
printf("\n\t\t\t\t%s, waehlen Sie 1 fuer Schere, 2 fuer Stein oder 3 fuer Papier: ", Spieler2); |
|
|
scanf(" %c", &wahl2); |
|
|
scanf(" %c", &wahl2); |
|
|
} |
|
|
} |
|
|
Lösung = game(wahl1, wahl2); |
|
|
Lösung = game(wahl1, wahl2); |
|
@ -111,10 +111,10 @@ int Modus2() { |
|
|
Stand1++; |
|
|
Stand1++; |
|
|
} |
|
|
} |
|
|
else if (Lösung == 0) { |
|
|
else if (Lösung == 0) { |
|
|
printf("\n\t\t\t\t%s Wow! Du gewinnst diese Runde!\n", Mensch2); |
|
|
|
|
|
|
|
|
printf("\n\t\t\t\t%s Wow! Du gewinnst diese Runde!\n", Spieler2); |
|
|
Stand2++; |
|
|
Stand2++; |
|
|
} |
|
|
} |
|
|
printf("\n\t\t\t\tPunktestand: %s - %d, %s - %d\n", Spieler1, Stand1, Mensch2, Stand2); |
|
|
|
|
|
|
|
|
printf("\n\t\t\t\tPunktestand: %s - %d, %s - %d\n", Spieler1, Stand1, Spieler2, Stand2); |
|
|
printf("\n\t\t\t\tMoechten Sie weiter spielen oder beenden? (Weiter/Ende)\n\t\t\t\t"); |
|
|
printf("\n\t\t\t\tMoechten Sie weiter spielen oder beenden? (Weiter/Ende)\n\t\t\t\t"); |
|
|
scanf("%s", ende) |
|
|
scanf("%s", ende) |
|
|
} |
|
|
} |
|
|