摘要: 1.编写程序,统计字符串中大写字母的个数。 #include<stdio.h>main(){ char str[20]; int i,cnt; cnt=i=0; gets(str); while(str[i]!='\0') { if(str[i]>='A'&&str[i]<='Z') cnt++; 阅读全文
posted @ 2021-11-23 22:36 ๓纯牛奶๓ 阅读(40) 评论(0) 推荐(0)