首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴小朴少的代码贴全部
#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
typedef struct student
{
char num[6];
char name[8];
int English;
int math; 
int tax;//名次
int score;
struct student *next;
......................
阅读全部 | 2013年6月23日 23:45
1
小朴少