| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 16532 人关注过本帖
标题:有一篇文章,共有3行文字,每行有80个字符,要求分别统计出其中英文大写字母 ...
取消只看楼主 加入收藏
fhyzjjh
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2017-5-10
结帖率:0
收藏
已结贴  问题点数:20 回复次数:6 
有一篇文章,共有3行文字,每行有80个字符,要求分别统计出其中英文大写字母、英文小写字母、数字、空格和其它字符的个数。
#include  <stdio.h>

main()
{
 char str[3][81];
 int upper,lower,digit,space,other;
 int i,j;
 upper=0;lower=0;digit=0;space=0;other=0;
 
 printf ("请输入三行字符:\n");
 
 for (i=0;i<3;i++)
 {
     for (j=0;str[i][j]=gerchar()!='\n';j++)
     {
         if (str[i][j]>='A' && str[i][j]<='Z')
             upper++;
         else if (str[i][j]>='a' && str[i][j]<='z')
             lower++;
         else if (str[i][j]>='0' && str[i][j]<='9')
             digit++;
         else if (str[i][j]=' ')
             space++;
         else
             other++;
     }
 }
 printf("大写字母:%d 个\n",upper);
 printf("小写字母:%d 个\n",lower);
 printf("数  字:%d 个\n",digit);
 printf("空  格:%d 个\n",space);
 printf("其  它:%d 个\n",other);
}
这个程序运行有一个错误,我没发现。请大神帮帮忙!!!
搜索更多相关主题的帖子: 英文 include 文章 统计 字母 
2017-05-11 09:07
fhyzjjh
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2017-5-10
收藏
得分:0 
#include  <stdio.h>

main()
{
 char str[3][81];
 int upper,lower,digit,space,other;
 int i,j;
 upper=0;lower=0;digit=0;space=0;other=0;
 
 printf ("请输入三行字符:\n");
 
 for (i=0;i<3;i++)
 {
     for (j=0;(str[i][j]=getchar())!='\n';j++)
     {
         if (str[i][j]>='A' && str[i][j]<='Z')
             upper++;
         else if (str[i][j]>='a' && str[i][j]<='z')
             lower++;
         else if (str[i][j]>='0' && str[i][j]<='9')
             digit++;
         else if (str[i][j]=' ')
             space++;
         else
             other++;
     }
 }
 printf("大写字母:%d 个\n",upper);
 printf("小写字母:%d 个\n",lower);
 printf("数  字:%d 个\n",digit);
 printf("空  格:%d 个\n",space);
 printf("其  它:%d 个\n",other);
}

非常谢谢rjsp
2017-05-12 10:46
fhyzjjh
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2017-5-10
收藏
得分:0 
回复 2楼 rjsp
我改了之后运行,统计出的其它字符other的个数总是0个。。。为什么,输入没有问题

[此贴子已经被作者于2017-5-12 10:51编辑过]

2017-05-12 10:50
fhyzjjh
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2017-5-10
收藏
得分:0 
回复 6楼 renkejun1942
有一篇文章,共有3行文字,每行有80个字符,要求分别统计出其中英文大写字母、英文小写字母、数字、空格和其它字符的个数。
#include  <stdio.h>

main()
{
 char str[3][81];
 int upper,lower,digit,space,other;
 int i,j;
 upper=0;lower=0;digit=0;space=0;other=0;
 
 printf ("请输入三行字符:\n");

 for (i=0;i<3;i++)
     gets(str[i]);

 for (i=0;i<3;i++)
 {
     for (j=0;j<80;j++)
     {
         if (str[i][j]>='A' && str[i][j]<='Z')
             upper++;
         else if (str[i][j]>='a' && str[i][j]<='z')
             lower++;
         else if (str[i][j]>='0' && str[i][j]<='9')
             digit++;
         else if (str[i][j]=' ')
             space++;
         else
             other++;
     }
 }
 printf("大写字母:%d 个\n",upper);
 printf("小写字母:%d 个\n",lower);
 printf("数  字:%d 个\n",digit);
 printf("空  格:%d 个\n",space);
 printf("其  它:%d 个\n",other);
}

C语言书上把此题列在字符数组这块内容中,所以我改了下程序。

[此贴子已经被作者于2017-5-12 11:03编辑过]

2017-05-12 11:02
fhyzjjh
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2017-5-10
收藏
得分:0 
#include  <stdio.h>

main()
{
 char str[3][81];
 int upper,lower,digit,space,other;
 int i,j;
 upper=0;lower=0;digit=0;space=0;other=0;
 
 printf ("请输入三行字符:\n");

 for (i=0;i<3;i++)
     gets(str[i]);

 for (i=0;i<3;i++)
 {
     for (j=0;j<80;j++)
     {
         if (str[i][j]>='A' && str[i][j]<='Z')
             upper++;
         else if (str[i][j]>='a' && str[i][j]<='z')
             lower++;
         else if (str[i][j]>='0' && str[i][j]<='9')
             digit++;
         else if (str[i][j]==' ')
             space++;
         else
             other++;
     }
 }
 printf("大写字母:%d 个\n",upper);
 printf("小写字母:%d 个\n",lower);
 printf("数  字:%d 个\n",digit);
 printf("空  格:%d 个\n",space);
 printf("其  它:%d 个\n",other);
}
2017-05-12 13:24
fhyzjjh
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2017-5-10
收藏
得分:0 
回复 5楼 wp231957
谢谢
2017-05-12 13:24
fhyzjjh
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2017-5-10
收藏
得分:0 
回复 5楼 wp231957
谢谢
2017-05-12 13:25
快速回复:有一篇文章,共有3行文字,每行有80个字符,要求分别统计出其中英文大 ...
数据加载中...
 
   



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

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