首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴云横皓月的代码贴C语言
#include<stdio.h>
#include<conio.h>
#include<string.h>
#include<stdlib.h>
int stunum=0; 
struct student 
 {
    int id;
    char name[30];
    int age;  
    char sex[2];
    char birthday[9];
......................
阅读全部 | 2014年7月8日 10:43
1
云横皓月