下面程序的功能:统计字符串中小写字母的个数,请填空完成程序。 # include < stdio . h ># define IA ( x )① void main () {char str [80],* s , ch ; int count =0; gets ( str ); s = str ; while (* s ) { ch =* s ++; if ( IA ( ch )) Count ++; printf (" the sum is % d \ n ", count );
时间: 2024-01-14 07:03:41 浏览: 68
下面程序的功能:统计字符串中小写字母的个数。
```
#include <stdio.h>
#define IA(x) (x >= 'a' && x <= 'z')
void main()
{
char str[80], *s, ch;
int count = 0;
gets(str);
s = str;
while (*s)
{
ch = *s++;
if (IA(ch))
count++;
}
printf("the sum is %d\n", count);
}
```
其中,第一个空应填 `(x >= 'a' && x <= 'z')`。
阅读全文