标题:求解不知道问题出在什么地方
只看楼主
chenziguo
Rank: 1
等 级:新手上路
帖 子:40
专家分:0
注 册:2013-10-25
结帖率:58.33%
已结贴  问题点数:20 回复次数:3 
求解不知道问题出在什么地方
#include "stdio.h"
main()
{
  int letters,digits,others;
  char c;
  c=getchar();
  letters=0;digits=0;others=0;
  while(c!='Y'||c!='y'||c!='N'||c!='n')
      if(c>='A'&&c<='Z'||c>='a'&&c<='z')
      letters++;
      else if(c>='0' && c<='9')
      digits++;
      else
      others++;
      if(c=='Y'||c=='y')
      {printf("lettes:%d",letters);
      printf("digits:%d",digits); }
      else
      printf("others:%d",others);
}
搜索更多相关主题的帖子: include letters others 
2014-07-23 15:51
wp231957
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:神界
等 级:版主
威 望:422
帖 子:13681
专家分:53296
注 册:2012-10-18
得分:7 
麻烦你在提问的时候 说说自己(代码)想干什么

DO IT YOURSELF !
2014-07-23 15:54
embed_xuel
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
等 级:贵宾
威 望:58
帖 子:3845
专家分:11385
注 册:2011-9-13
得分:7 
重写吧,从hello,world开始

总有那身价贱的人给作业贴回复完整的代码
2014-07-23 15:55
funyh250
Rank: 10Rank: 10Rank: 10
等 级:贵宾
威 望:26
帖 子:290
专家分:1573
注 册:2013-12-25
得分:7 
程序代码:
#include "stdio.h"
void main()
{
  int letters,digits,others;
  char c;
//  c=getchar();
  letters=0;digits=0;others=0;

 // while(c!='Y'||c!='y'||c!='N'||c!='n')
  while(c=getchar())
  {
      getchar();
      if(c>='A'&&c<='Z'||c>='a'&&c<='z')
           letters++;
      else 
     {
              if(c>='0' && c<='9')
               digits++;
              else 
               others++;
      }
  
      if(c=='Y'||c=='y')
          break;
  }
      printf("lettes:%d",letters);
      printf("digits:%d",digits); 

 //     else
      printf("others:%d",others);
      return ;
}

学习是大事   吃喝拉撒睡是小事   其他的那都不是事
2014-07-23 16:20



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-434325-1-1.html




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

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