题解 | #统计大写字母个数#
统计大写字母个数
http://www.nowcoder.com/practice/434414efe5ea48e5b06ebf2b35434a9c
找出给定字符串中大写字符(即'A'-'Z')的个数。
#include<stdio.h>
int main()
{
char s[1000];
int i,k=0,len;
while(gets(s))
{
len=strlen(s);
for(i=0;i<len;i++)
{
if('A'<=s[i]&&s[i]<='Z')
{
k=k+1;
}
}
printf("%d\n",k);
k=0;
}
return 0;
}