c实现
#include <stdio.h>
int main()
{
char ch;
int count_of_letter=0;
int count_of_number=0;
int count_of_space=0;
int count_of_other=0;
while(scanf("%c",&ch)&&ch!='\n')
{
if(ch== ' ')
count_of_space++;
else if(ch<='9'&&ch>='0')
count_of_number++;
else if((ch<='z'&&ch>='a')||(ch<='Z'&&ch>='A'))
count_of_letter++;
else
count_of_other++;
}
printf("%d %d %d %d\n",count_of_letter,
count_of_number,count_of_space,count_of_other);
return 0;
}
c++实现
#include <iostream>
using namespace std;
int main()
{
char ch;
int count_of_letter=0;
int count_of_number=0;
int count_of_space=0;
int count_of_other=0;
cin.get(ch);
while(ch!='\n')
{
if(ch== ' ')
count_of_space++;
else if(ch<='9'&&ch>='0')
count_of_number++;
else if((ch<='z'&&ch>='a')||(ch<='Z'&&ch>='A'))
count_of_letter++;
else
count_of_other++;
cin.get(ch);
}
cout<<count_of_letter<<" "
<<count_of_number<<" "
<<count_of_space<<" "
<<count_of_other<<endl;
return 0;
}
0.0分
5 人评分
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:660 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:481 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:526 |
买不到的数目 (C++代码)浏览:835 |
P1001 (C语言代码)浏览:785 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:634 |
母牛的故事 (C语言代码)浏览:700 |
1113题解浏览:768 |
1024题解浏览:775 |
出圈】指针malloc版浏览:347 |