学生成绩管理系统C语言代码
学生成绩管理系统C语言代码
日期:2017-10-07 20:05:55 人气:1
#include"stdio.h"
#include
#include
#define N 30
struct student
{
int num;
char name[20];
int age;
int Math;
int English;
int Physical;
long int sum;
}stu[N];
enter()
{int i,n;
printf("How many students(1-%d)?: