标题:求解不知道问题出在什么地方
取消只看楼主
chenziguo
Rank: 1
等 级:新手上路
帖 子:40
专家分:0
注 册:2013-10-25
结帖率:58.33%
已结贴  问题点数:20 回复次数:0 
求解不知道问题出在什么地方
#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



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




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

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