From a21980197815dcca9951ab80721c293ace445a34 Mon Sep 17 00:00:00 2001 From: fdai7225 Date: Sun, 22 Jan 2023 22:15:13 +0100 Subject: [PATCH] Konfiguration von delay function --- src/Umgebung.c | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/Umgebung.c b/src/Umgebung.c index bb7db70..72e4222 100644 --- a/src/Umgebung.c +++ b/src/Umgebung.c @@ -5,27 +5,32 @@ #include #include #include -#include + #define N 40 void Umgebung(char str[N][N]); void delay(int ms); int main(){ - - char str[N][N]; - Umgebung(str); - + char g; + while((g=getchar())!=EOF){ + + + char str[N][N]; + Umgebung(str); + + } re 0; } void delay(int ms){ clock_t start = clock(); - while (clock()< start + ms); + while (clock() < start + ms); } void Umgebung(char str[N][N]){ + system("cls"); printf("\n"); printf("\tHerzlichen Willkommen zum Spiel \n");