Aktualizovat „du5/program.c“
This commit is contained in:
parent
fc861aa2b6
commit
d878784ee9
@ -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++;
|
||||
|
Loading…
Reference in New Issue
Block a user