输入参考资料10名学生的序号和每个学生三门功课(数学、英语、C语言程序设计)的成绩,编程计算出每个学生的总分

#include<stdio.h>#include<stdlib.h>struct student{ int num;  int math;  int english;  int c;  int su

腾讯文库输入参考资料10名学生的序号和每个学生三门功课(数学、英语、C语言程序设计)的成绩,编程计算出每个学生的总分