Aktualizovat „du5/program.c“

This commit is contained in:
Bohdan Yanchyk 2020-04-09 23:53:12 +00:00
parent fc861aa2b6
commit d878784ee9

View File

@ -38,19 +38,19 @@ int main(){
int score=0; int score=0;
int c =0; int c =0;
char str[100]; char str[100];
char digit; char digit[2];
while(fgets(str,100,stdin)){ while(fgets(str,100,stdin)){
if(str[0]=='\n'){ if(str[0]=='\n'){
break; break;
} }
sscanf(str,"%c %[^\t\n]",&digit,name); sscanf(str,"%s %[^\t\n]",&digit,name);
if(isalpha(digit)!=0){ if(isalpha(digit[0])!=0){
if(c==0){ if(c==0){
printf("Nepodarilo nacitat nic\n"); printf("Nepodarilo nacitat nic\n");
return 0; 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; PersonList[c].score = score;
strcpy(PersonList[c].name ,name); strcpy(PersonList[c].name ,name);
c++; c++;