Aktualizovat „du5/program.c“
This commit is contained in:
parent
5be95e0e42
commit
13b4d317b3
@ -72,19 +72,19 @@ int main(){
|
||||
|
||||
for(int i =0;i<c-1;i++){
|
||||
for(int j=i+1;j<c-1-i;j++){
|
||||
if(strcmp(PersonList[i].name,PersonList[j].name)==0&&PersonList[i].score>PersonList[j].score){
|
||||
if(strcmp(PersonList[i].name,PersonList[j].name)==0){
|
||||
struct person temp = PersonList[j];
|
||||
PersonList[j] = PersonList[j+1];
|
||||
PersonList[j+1]=temp;
|
||||
c--;
|
||||
k++;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
k--;
|
||||
printf("Vysledky:\n");
|
||||
for(int i =0;i<c;i++){
|
||||
for(int i =0;i<k;i++){
|
||||
printf("%d %s\n",PersonList[i].score,PersonList[i].name);
|
||||
}
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user