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

#define MAX_STUDENT_SIZE 1000

struct Student {
char name[32];
char id[16];
int chinese_score;
int math_score;
int total_score;
......................
阅读全部 | 2016年6月8日 03:27
1
小金金