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++代码)浏览:1151 |
C语言训练-字符串正反连接 (C语言代码)浏览:721 |
不知道哪里错了浏览:1210 |
永远的丰碑 (C语言代码)浏览:681 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:644 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:1071 |
C语言训练-角谷猜想 (C语言代码)浏览:1758 |
C语言训练-计算一个整数N的阶乘 (C语言代码)浏览:970 |
A+B for Input-Output Practice (V) (C++代码)浏览:471 |
简单的a+b (C++语言代码)浏览:886 |