摘要: #include<stdio.h> #include<string.h> int main() { char a[50]; int i,len; i=0; while(gets(a)) { len=strlen(a); for(i=0;i<len;i++) { if(a[i]>='A'&&a[i]< 阅读全文
posted @ 2017-12-10 22:19 RAIN-code 阅读(511) 评论(0) 推荐(0) 编辑