c++程序问题,求一个字符串有大写字母,小写字母和数字,和其它符号的个数,下列程序哪里错了
#include<iostream>usingnamespacestd;intmain(){charch;inta,b,c,d;a=0;b=0;c=0;d=0cin>>c...
#include<iostream>
using namespace std;
int main()
{ char ch;
int a,b,c,d;
a=0;b=0;c=0;d=0
cin>>ch;
while(ch=!='\n')
{if('A'<=ch&&ch<='Z')
a=(a+1);
else if('a'<=ch&&ch<='z')
b=(b+1);
else if('0'<=ch&&ch<='9')
c=(c+1);
else d=(d+1);}
cout<<a<<" "<<b<<" "<<c<<" "<<d<<endl;
}
为什么这个程序不行呢,我输入字符串得不到任何东西 展开
using namespace std;
int main()
{ char ch;
int a,b,c,d;
a=0;b=0;c=0;d=0
cin>>ch;
while(ch=!='\n')
{if('A'<=ch&&ch<='Z')
a=(a+1);
else if('a'<=ch&&ch<='z')
b=(b+1);
else if('0'<=ch&&ch<='9')
c=(c+1);
else d=(d+1);}
cout<<a<<" "<<b<<" "<<c<<" "<<d<<endl;
}
为什么这个程序不行呢,我输入字符串得不到任何东西 展开
1个回答
展开全部
原来的程序编译都不能通过的啊?下面是修改好了的:
#include<iostream>
using namespace std;
int main()
{char ch;
int a,b,c,d;
a=0;b=0;c=0;d=0;
ch=getchar();
while(ch!='\n')
{if('A'<=ch&&ch<='Z')
a=(a+1);
else if('a'<=ch&&ch<='z')
b=(b+1);
else if('0'<=ch&&ch<='9')
c=(c+1);
else d=(d+1);
ch=getchar();
}
cout<<a<<" "<<b<<" "<<c<<" "<<d<<endl;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询