首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴西单小六的代码贴全部
#include"stdio.h"
#include"malloc.h"
#include"stdlib.h"
#include"string.h"
#define SIZE sizeof(struct student)
struct student{
    int Subject;
    struct student * next;
};
struct subject
{
    int subject;             //科目数,且规定一名教师教授一门课程
......................
阅读全部 | 2011年12月30日 03:11
1
西单小六