From ffa520e44340008c5c0031e3a02333fd89532f17 Mon Sep 17 00:00:00 2001 From: Artem Horbunov Date: Wed, 8 Apr 2020 06:31:25 +0000 Subject: [PATCH] =?UTF-8?q?Aktualizovat=20=E2=80=9Edu5/program.c=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- du5/program.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/du5/program.c b/du5/program.c index 4f4dbc7..64d8683 100644 --- a/du5/program.c +++ b/du5/program.c @@ -9,13 +9,17 @@ int main(){ char cmpStr2[] = "Roonuge Gal"; //Getting input while(1){ + int tmpCh = getc(stdin); + if(tmpCh < '0' || tmpCh > '9') break; + ungetc(tmpCh, stdin); + scanf("%d %[^\n]", &score[pos], name[pos]); scanf("%*c"); pos++; if(strcmp(name[pos - 1], cmpStr1) == 0) break; if(strcmp(name[pos - 1], cmpStr2) == 0) break; - int tmpCh = getc(stdin); + tmpCh = getc(stdin); if(tmpCh == '\n') break; ungetc(tmpCh, stdin); }