1.输入15个字符,统计其中英文字母、空格或回车、数字字符和其他字符的个数!用c++编程,求高手,在线等

2020-10-14 社会 416阅读
#include
using namespace std;
int main()
{
char chars[15];
cout<<"请输入15个字符!"< for (int j=0;j<15;j++)
{
chars[j]=getchar();
}
int s=0,e=0,kh=0,other=0;
for (int i=0;i<15;i++)
{
char ch=chars[i];
if (ch==' '| ch=='\n'){kh++;}
else if (48<=ch&&ch<=57){s++;}
else if ((65<=ch&&ch<=90) | (97<=ch&&ch<=122)){e++;}
else {other++;}
}
cout<<"英文字符个数:\t"< cout<<"空格或回车字符个数:\t"< cout<<"数字字符个数:\t"< cout<<"其它字符个数:\t"< return 0;
}//测试用例——1234 abcDE[ +'>
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com