输入5名考生数据信息并编写函数通过调用函数实现1找出成绩最高的考生信息并输出2按考生成绩从大到小排序
#include<stdio.h>#define N 5void main(){ int number[N]; int i,max; char name[5]; char sex; char age; float score; printf("Please input the number,name,sex,age and score: "); for(i=1;i<=N;i++) { printf("请输入第%d个学生的信息:学号,名字,性别,年龄和成绩: ",i); scanf("%s %s %s %s %d",&number,&name,&sex,&age,&score); } max=number[0]; for(i=1;i<=N;i++) { if(max<number[i]) { max=number[i]; } } printf("The max score is %s %s %s %s %d",number,name,sex,age,score); }
你完全没有按题目要求做
1。你的学生信息只定义一个,要用数组的(学号,姓名要用二维数组的),最好用结构(若你学过)
2。你的max取的是学号的第一位,而不是成绩。max要定义成float的
3。你的排序呢?
热门标签: