C语言-利用数组统计字符串中数字字符的个数

2020-01-09  本文已影响0人  广陵周惊蛰

问题描述:利用数组统计字符串中数字字符的个数

源代码:

/*统计字符串中数字字符的个数*/
#include<stdio.h>
int main(void)
{
    int count,i;
    char str[80];
    
    printf("Enter a string:");
    i=0;
    while((str[i]=getchar())!='\n')
        i++;
    str[i]='\0';
    
    count =0;
    for(i=0;str[i]!='\0';i++)
        if(str[i]<='9'&&str[i]>='0')
            count++;
    printf("count=%d\n",count);
    return 0;
 } 

运行结果:

统计数字数

程序心得:

while((str[i]=getchar())!='\n')

先把 字符赋值给素组,在进行判断。

程序参数:

上一篇下一篇

猜你喜欢

热点阅读