UVa 10815 - Andy's First Dictionary
摘要:
这道题貌似有陷阱:用gets过不了。 1 # include <stdio.h> 2 # include <ctype.h> 3 # include <string.h> 4 # include <stdlib.h> 5 6 # define MAX_LEN 205 7 # define MAXN 5005 8 9 char dic[MAXN][MAX_LEN];10 char word[MAX_LEN];11 12 int cmp(const void *a, const void *b);13 14 int main()15 {16 char 阅读全文
posted @ 2012-03-27 00:37 getgoing 阅读(696) 评论(0) 推荐(0) 编辑