具体的程序如下:#include <stdio.h> #include <stdlib.h> #include <time.h> struct question { char ask;/*选择题题目*/ char answer;/*选择题选项*/ int right;/*正确答案*/ struct question *next; }; int MenuChoic...
阅读全文
2007
11-17