|
@ -80,12 +80,14 @@ return 0; |
|
|
|
|
|
|
|
|
int Modus2() { |
|
|
int Modus2() { |
|
|
char Mensch1[50], Mensch2[50]; |
|
|
char Mensch1[50], Mensch2[50]; |
|
|
|
|
|
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", Mensch1); |
|
|
scanf("%s", Mensch1); |
|
|
printf("\n\t\t\t\tName Mensch 2: "); |
|
|
printf("\n\t\t\t\tName Mensch 2: "); |
|
|
scanf("%s", Mensch2); |
|
|
scanf("%s", Mensch2); |
|
|
|
|
|
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') { |
|
|
printf("\n\t\t\t\t%s, waehlen Sie 1 fuer Schere, 2 fuer Stein oder 3 fuer Papier: ", Mensch1); |
|
|
printf("\n\t\t\t\t%s, waehlen Sie 1 fuer Schere, 2 fuer Stein oder 3 fuer Papier: ", Mensch1); |
|
@ -113,4 +115,7 @@ int Modus2() { |
|
|
Stand2++; |
|
|
Stand2++; |
|
|
} |
|
|
} |
|
|
printf("\n\t\t\t\tPunktestand: %s - %d, %s - %d\n", Mensch1, Stand1, Mensch2, Stand2); |
|
|
printf("\n\t\t\t\tPunktestand: %s - %d, %s - %d\n", Mensch1, Stand1, Mensch2, Stand2); |
|
|
|
|
|
printf("\n\t\t\t\tMoechten Sie weiter spielen oder beenden? (Weiter/Ende)\n\t\t\t\t"); |
|
|
|
|
|
scanf("%s", ende); |
|
|
|
|
|
} |
|
|
} |
|
|
} |