码迷,mamicode.com
首页 > 编程语言 > 详细

用c语言统计一个字符串中有多少个数字字符

时间:2015-09-23 01:25:36      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:用c语言统计一个字符串中有多少个数字字符

用c语言统计一个字符串中有多少个数字字符。

#include<stdio.h>
int main()
{
    char ch;
     int count=0;
    while((ch=getchar())!=‘\n‘)
     {
        if(ch>‘0‘&&ch<‘9‘)
              count++;
     }
     printf("%d\n",count);
     return 0;

}


用c语言统计一个字符串中有多少个数字字符

标签:用c语言统计一个字符串中有多少个数字字符

原文地址:http://green906.blog.51cto.com/10697569/1697222

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!