大学C语言实训课,C语言学生成绩管理系统,供大家参考,具体内容如下
#include
#include
#include<math.h>
struct student
{
int num;
char name[20];
float pingshi;
float shiyan;
float kaoshi;
double zongping;
}stu[4];
void main()
{
void a();
void b();
void c();
void d();
void e();
int n;
while(n!=6)
{
1