题解 1051: [编程入门]结构体之成绩统计2

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

小白写程序-结构体之成绩统计2(C语言)

摘要:解题思路:1.建立结构体 2.在主函数中用设一个结构体max用于存储总分最大的数据行,先设置初始值为都为0,输入要输入的数据行个数 3.在循环体内设循环体,输入数据行,并且用if语句判断总分大小,将较……

结构体输出成绩统计

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct stu{    char num[50];    char name[50];    ……

结构体之成绩统计2

摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct student{     char id[10];     char name[20];     int ……

1051成绩统计2

摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct student{ char xuehao[20]; char xinming[20]; int a; in……

,,,,,,,,,,,

摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct student{    char number[100];    char name[100];    int scor……