Ramen update

main
MuedeHydra 2024-12-16 12:04:36 +01:00
parent be021d315f
commit 0da98417cd
2 changed files with 21 additions and 0 deletions

View File

@ -44,6 +44,16 @@ int antwort (int loesung, int *falsche_antwort){
*falsche_antwort += 1;
if (*falsche_antwort >= max_anzahl_fehler) {
printf("Zu viele ungültige Eingaben. Programm beendet.\n");
fflush(stdout);
//Sleep
#ifdef __linux__
sleep(2);
#elif _WIN32
// Sleep ist in Milisekunden
Sleep(2 * 1000);
#endif
return 20;
}
}
@ -357,6 +367,16 @@ int Ramen_Physik(){
}
case '4':{
Tic_Tac_Toe();
fflush(stdout);
//Sleep
#ifdef __linux__
sleep(2);
#elif _WIN32
// Sleep ist in Milisekunden
Sleep(2 * 1000);
#endif
break;
}

View File

@ -33,6 +33,7 @@ void printWinner(char);
//Das Hauptprogramm
int Tic_Tac_Toe()
{
printf("Du spielst mit O und der Computer mit X \n \n");
char winner = ' ';