结构体的应用-成绩录入初步

Posted SmallDolphin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了结构体的应用-成绩录入初步相关的知识,希望对你有一定的参考价值。

 1 #include<cstdio>
 2 #include<string>
 3 
 4 struct student{
 5     int num;
 6     char name[20];
 7     int score;
 8 };
 9 
10 int main(){
11     int i;
12     struct student st,stmax,stmin;
13     stmax.score = 0;
14     stmin.score = 100;
15     for(i=1;i<=100;i++){
16         scanf("%d%s%d", &st.num, st.name, &st.score);
17         if(st.score > stmax.score)
18         stmax = st;
19         if(st.score < stmin.score)
20         stmin = st;
21     }
22     printf("\n %5d%15s%5d", stmax.num, stmax.name, stmax.score);
23     printf("\n %5d%15s%5d", stmin.num, stmin.name, stmin.score);
24 }

 

以上是关于结构体的应用-成绩录入初步的主要内容,如果未能解决你的问题,请参考以下文章

结构体的初步了解

mfc学生成绩录入与查询

C语言中结构体的理解

蓝桥杯8(北理工复试3—结构体的应用)

学生成绩管理程序

经典实验--学生成绩管理系统