摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 #define MAX 90000000 5 6 int count = 0; 7 char name[201][40]; 8 int find(char *a) //此函数实现将字符串转化为数字,剽窃党姐的呵呵>_< 9 { 10 int i; 11 for( i = 1; i <= count; i++ ) 12 if( strcmp(a,name[i]) == 0 ) 13 retur... 阅读全文
posted @ 2011-10-19 16:53 zhongya 阅读(302) 评论(0) 推荐(1) 编辑