Life, the most valuable than time. Life, the most brilliant than the cause. Life, the most happy is not too hard.
人生,最宝贵的莫过于光阴。人生,最璀璨的莫过于事业。人生,最快乐的莫过于奋斗。
本关任务:编写一个基于结构体得学生成绩信息管理系统。主要功能如下:
1. 用结构体存放所有数据。
2.每个功能都用函数实现。
3.输入10个学生的学号和三门课程的成绩。
4.计算每个学生的总分。
5.按总分从高到低排序。
6.加上名次一列。
7.输出最后的二维表格样式的成绩,含学号、三门课成绩、总分、名次。
请填写五个函数完成相应功能的实现。其中:
测试输入:
201901 78 95 67
201902 67 65 87
201903 78 73 62
201904 70 71 60
201905 59 61 65
201906 73 90 72
201907 68 63 79
201908 55 68 71
201909 69 53 60
201910 89 95 90
预期输出:
源代码:
#include<stdio.h>
typedef struct{
int no;
float sc[3];
float total;//总分
int rank;//名次
}STU;
#include<stdio.h>
void input_data(STU s[]);
void calculate(STU s[]);
void sort_total(STU s[]);
void add_rank(STU s[]);
void print_data(STU s[]);
int main()
{
STU s[10];
input_data(s);
calculate(s);
sort_total(s);
add_rank(s);
print_data(s);
return 0;
}
void input_data(STU s[]) {
int n, i;
for (i = 0; i < 10; i++) {
scanf("%d", &s[i].no);
for (n = 0; n < 3; n++) {
scanf("%f", &s[i].sc[n]);
}
}
}
void calculate(STU s[]) {
int n, i;
for (n = 0; n < 10; n++) {
s[n].total = 0;
for (i = 0; i < 3; i++) {
s[n].total = s[n].sc[i] + s[n].total;
}
}
}
void sort_total(STU s[]) {
int n,i;
STU temp;
for(i=0;i<9;i++){
for(n=0;n<9-i;n++){
if (s[n+1].total>s[n].total) {
temp = s[n];
s[n] = s[n + 1];
s[n + 1] = temp;
}
}
}
}
void add_rank(STU s[])
{
int n,i;
for(i=1,n=0;i<11;i++,n++){
s[n].rank=i;
}
}
void print_data(STU s[])
{
int n;
printf("学号:语文:数学:英语:总分:名次:\n");
for(n=0;n<10;n++) {
if(n<9)
printf("%-15d%-15.1f%-15.1f%-15.1f%-15.1f%d\n", s[n].no,s[n].sc[0],s[n].sc[1],s[n].sc[2],s[n].total,s[n].rank);
else{
printf("%-15d%-15.1f%-15.1f%-15.1f%-15.1f%d", s[n].no,s[n].sc[0],s[n].sc[1],s[n].sc[2],s[n].total,s[n].rank);
}
}
}
运行结果: