首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴刘利的代码贴C语言
#include <stdio.h> 
#include <stdlib.h> 
#include <string.h>
#include <conio.h> 
#define N 3
struct  student 
{char name[10];
 char no[10];
 char sex;
 int  age;
 char bnote[100];
};
......................
阅读全部 | 2016年6月28日 20:01
#include <stdio.h> 1
#include <stdlib.h> 2
#include <string.h>3
#include <conio.h> 4
#define N 3
struct  student 
{char name[10];
 char no[10];
 char sex;
 int  age;
 char bnote[100];
};
......................
阅读全部 | 2016年6月28日 20:00
1
刘利