| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 538 人关注过本帖
标题:将以下程序补充完整,实现:输入一行字符,分别统计出其中英文字母、空格、 ...
只看楼主 加入收藏
阶段丶成长
Rank: 2
来 自:中国
等 级:论坛游民
帖 子:41
专家分:32
注 册:2013-11-11
结帖率:87.5%
收藏
已结贴  问题点数:8 回复次数:1 
将以下程序补充完整,实现:输入一行字符,分别统计出其中英文字母、空格、数字和其他字母的个数。
   #include
   int main( )
   {
     char c;
     int letter=0,space=0,digit=0,other=0;
     printf("input a line letter:\n");
                        /*读取当前字符,如不为回车符则进行统计*/
       {
        if(c>='a' && c<='z'||c>='A' && c<='Z')
         letter++;
        else if(c==' ')
          space++;
else                        
          digit++;
        else
          other++;
       }
    printf(" letter=%d,space=%d,digit=%d,other=%d\n",letter,space,digit,other);
    return 0;
  }
         
搜索更多相关主题的帖子: 英文字母 include letter 统计 
2013-11-20 15:06
飞羽络辰
Rank: 2
来 自:河南濮阳
等 级:论坛游民
帖 子:15
专家分:18
注 册:2013-11-19
收藏
得分:8 
#include
    int main( )
    {
      char c;
     int letter=0,space=0,digit=0,other=0;
     printf("input a line letter:\n");/*读取当前字符,如不为回车符则进行统计*/
       while((c=getchar())!='\n')                                 
        {
         if(c>='a' && c<='z'||c>='A' && c<='Z')
          letter++;
        else if(c==' ')
           space++;
        else  if(c>=0 && c<=9)                        
           digit++;
        else
           other++;
       }
     printf(" letter=%d,space=%d,digit=%d,other=%d\n",letter,space,digit,other);
    return 0;
   }
    这样就行了,这很简单自己研究研究就出来了      

简单可依赖!!!
2013-11-21 00:22
快速回复:将以下程序补充完整,实现:输入一行字符,分别统计出其中英文字母、空 ...
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023570 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved