解题思路:
注意事项:
参考代码:
#include <stdio.h>
#include <string.h>
struct student{
char name[200];
int age;
int score;
}stu[1005];
int main()
{
int n;
struct student t;
while(~scanf("%d", &n))
{
for (int i = 0; i < n; i++)
scanf("%s%d%d", stu[i].name, &stu[i].age, &stu[i].score);
for (int i = 0; i < n - 1; i++)
for (int j = 0; j < n - 1 - i; j++)
{
if (stu[j].score > stu[j + 1].score)
{
t = stu[j];
stu[j] = stu[j + 1];
stu[j + 1] = t;
}
else if (stu[j].score == stu[j + 1].score)
{
if (strcmp(stu[j].name,stu[j + 1].name) > 0)
{
t = stu[j];
stu[j] = stu[j + 1];
stu[j + 1] = t;
}
else if (strcmp(stu[j].name,stu[j+1].name) == 0)
{
if (stu[j].age > stu[j + 1].age)
{
t = stu[j];
stu[j] = stu[j + 1];
stu[j + 1] = t;
}
}
}
}
for (int i = 0; i < n; i++)
printf("%s %d %d\n", stu[i].name, stu[i].age, stu[i].score);
}
return 0;
}
0.0分
0 人评分
用筛法求之N内的素数。 (C语言代码)浏览:685 |
printf基础练习2 (C语言代码)浏览:653 |
文科生的悲哀 (C语言代码)浏览:1538 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:676 |
简单的a+b (C语言代码)浏览:529 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:438 |
IP判断 (C语言代码)浏览:592 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:725 |
筛排处理 (C语言代码)浏览:830 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:576 |