首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴我爱C语言2的代码贴全部
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>

#define StuNum 30    //学生人数最大值
#define CourseNum 3 //科目数

struct student //定义结构数组
{
char studentID[10]; //学号
int score[CourseNum];   //成绩
......................
阅读全部 | 2013年6月26日 18:57
1
我爱C语言2