From 1ff197ade64f52002d8f4337ce2580abda1b7554 Mon Sep 17 00:00:00 2001 From: Bohdan Yanchyk Date: Thu, 9 Apr 2020 23:54:52 +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, 2 insertions(+), 4 deletions(-) diff --git a/du5/program.c b/du5/program.c index 841b7da..1f8eca3 100644 --- a/du5/program.c +++ b/du5/program.c @@ -38,19 +38,17 @@ int main(){ int score=0; int c =0; char str[100]; - char digit[2]; while(fgets(str,100,stdin)){ if(str[0]=='\n'){ break; } - sscanf(str,"%s %[^\t\n]",&digit,name); - if(isalpha(digit[0])!=0){ + sscanf(str,"%d %[^\t\n]",&score,name); + if(isalpha(str[0])!=0){ if(c==0){ printf("Nepodarilo nacitat nic\n"); return 0; } } - int score = digit[0]-48>=0?((digit[0]-48)*10)+digit[1]-48:0; PersonList[c].score = score; strcpy(PersonList[c].name ,name); c++;