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


struct StuMsg //学生信息
{
char id[4]; //学生学号
char name[10]; //学生名字
......................
阅读全部 | 2016年1月18日 17:41
1
qq_s15