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