#include<conio.h>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
#define szSTR 240
/*考题数据库,以链表表示*/
struct Question{
char titleszSTR [];/*题目*/
char answer;/*正确答案*/
char mark;/*防止重复出题的标志位*/
char structQuestion*next;
......................
阅读全部 | 2015年6月22日 20:32