3 12ajf fi8x_a ff ai_2
no yes noisalnum函数链接:http://see.xidian.edu.cn/cpp/html/112.html源代码:#include <stdio.h> #include <string.h> #include <stdlib.h> #include <ctype.h> int main() { int i,n,f; char str[51]; scanf("%d",&n); getchar(); while(n--) { gets(str); f=1; if(str[0]!=‘_‘&&!isalpha(str[0])) f=0; i=1; while(str[i]!=‘\0‘ && f==1) { if(str[i]!=‘_‘&&!isalnum(str[i])) f=0; i++; } if(f==0) printf("no\n"); else printf("yes\n"); } system("pause"); return 0; }
原文地址:http://blog.csdn.net/zchlww/article/details/41551959