美文网首页
C语言-利用数组统计字符串中数字字符的个数

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

作者: 广陵周惊蛰 | 来源:发表于2020-01-09 15:41 被阅读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')
    

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

    程序参数:

    • 输出大小: 148.873046875 KiB
    • 编译时间: 0.41s

    相关文章

      网友评论

          本文标题:C语言-利用数组统计字符串中数字字符的个数

          本文链接:https://www.haomeiwen.com/subject/jvbyactx.html