C语言课程设计报告(题目:学生成绩管理系统)
C语言课程设计报告(题目:学生成绩管理系统)
日期:2010-04-09 14:15:15 人气:1
#include
#include
#include
#define N 35
char name;
int inth;
struct date
{
int year;
char month;
char day;
};
struct student
{
char no[9];
char name[9];
char sex[3];
struct date birthday;
int score[4];
};
int menu()
{