Aktualizovat „du5/program.c“
This commit is contained in:
parent
b2d5ae345f
commit
ce83440de1
@ -39,17 +39,14 @@ int main(){
|
||||
int c =0;
|
||||
char str[100];
|
||||
while(fgets(str,100,stdin)){
|
||||
if(str[0]=='\n'){
|
||||
break;
|
||||
}
|
||||
sscanf(str,"%d %[^\t\n]",&score,name);
|
||||
if(isalpha(str[0])!=0){
|
||||
if(isalpha(str[0])!=0||str[0]=='\n'){
|
||||
if(c==0){
|
||||
printf("Nepodarilo nacitat nic\n");
|
||||
return 0;
|
||||
}
|
||||
break;
|
||||
}
|
||||
sscanf(str,"%d %[^\t\n]",&score,name);
|
||||
PersonList[c].score = score;
|
||||
strcpy(PersonList[c].name ,name);
|
||||
c++;
|
||||
|
Loading…
Reference in New Issue
Block a user