解题思路:
注意事项:
参考代码:
#include<stdio.h> #include<string.h> struct stu{ char name[101]; int age; int score; }; int main() { int n; while (scanf("%d", &n) != EOF)//注意多组输入 { struct stu s[n]; for (int i = 0; i < n; i++) { scanf("%s",s[i].name); scanf("%d %d",&s[i].age, &s[i].score); // 输入学生数据 } struct stu temp; for(int i=n;i>=1;i--){ for(int j=0;j<i-1;j++){ if(s[j].score>s[j+1].score){ temp=s[j]; s[j]=s[j+1]; s[j+1]=temp; } } } for(int i=n;i>=1;i--){ for(int j=0;j<n;j++){ if(s[j].score==s[j+1].score&&strcmp(s[j].name,s[j+1].name)>0) { temp=s[j]; s[j]=s[j+1]; s[j+1]=temp; } if(s[j].score==s[j+1].score&&strcmp(s[j].name,s[j+1].name)==0&&s[j].age>s[j+1].age) { temp=s[j]; s[j]=s[j+1]; s[j+1]=temp; } } } for(int i=0;i<n;i++)printf("%s %d %d\n",s[i].name,s[i].age,s[i].score); } }
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:588 |
C二级辅导-计负均正 (C语言代码)浏览:607 |
C语言程序设计教程(第三版)课后习题8.1 (Java代码)浏览:828 |
C语言训练-自由落体问题 (C语言代码)浏览:1775 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:702 |
C语言程序设计教程(第三版)课后习题8.2 (C语言代码)浏览:5275 |
简单的a+b (C语言代码)浏览:560 |
【金明的预算方案】 (C++代码)浏览:873 |
C语言程序设计教程(第三版)课后习题9.6 (C语言代码)浏览:597 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:609 |