解题思路:
注意事项:
参考代码:
#include <stdio.h> typedef struct stu{ char name[20]; int sroue; }temp; int main(void) { int n = 0; temp pc[101]; int j = 0; scanf("%d", &n); int max = 0; for (int i = 0; i < n; ++i) { scanf("%d %s",&pc[i].sroue,pc[i].name); } for(int i = 0;i<n;++i) { if(pc[i].sroue>=max) { max = pc[i].sroue; j = i; } } printf("%s",pc[j].name); return 0; }
0.0分
0 人评分
A+B for Input-Output Practice (V) (C++代码)浏览:485 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:700 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:783 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:736 |
WU-链表数据求和操作 (C++代码)浏览:1382 |
三角形 (C++代码)递归(存在大量重复计算,容易出现时间超限)浏览:836 |
【蟠桃记】 (C语言代码)浏览:1084 |
【计算直线的交点数】 (C语言代码)浏览:1501 |
1014题解浏览:524 |
Tom数 (C语言代码)浏览:517 |