高手指点下!
有10人参加百米赛跑,成绩如下:
207号: 14.5秒 077号: 15.1秒
166号: 14.2秒 231号: 14.7秒
153号: 15.1秒 276号: 13.9秒
096号: 15.7秒 122号: 13.7秒
239号: 14.9秒 302号: 14.5秒
编写一个程序求前三名运动员的号码及相应的成绩.
#include <stdio.h> struct Info { int ID; float time; }stu1={207,14.5},stu2={166,14.2},stu3={153,15,1},stu4={096,15,7},stu5={239,14,9},stu6={077,15,1},stu7={231,14.7},stu8={276,13.9},stu9={122,13,7},stu10={302,14.5}; void main() {
}
这里怎么比较啊!