摘要: 最先看到这题,犹豫了下,发现这题的输入需要做比较复杂的字符串处理。随后还是编了代码出来。版本1:AC。 1 #include 2 #include 3 #include 4 5 #define STU_MAX 1000 6 #define NAME_LEN 11 7 #define TIME_LEN 11 8 9 #ifdef DEBUG 10 #include 11 #endif 12 13 typedef struct Student { 14 15 char name[NAME_LEN]; 16 int acnum; 17 ... 阅读全文
posted @ 2013-09-15 00:11 Allen_Wu 阅读(432) 评论(0) 推荐(0) 编辑