摘要: 1、编写程序,统计字符串中大写字母的个数 #include <stdio.h> main() { char str[80]; int i=0; int cnt=0; printf("请输入你的字母:"); gets(str); while ( str[i]!='\0' ) { if ( str[i] 阅读全文
posted @ 2021-11-25 21:07 宗谷 阅读(94) 评论(0) 推荐(0)