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二级辅导-等差数列 (C语言代码)浏览:757 |
C二级辅导-同因查找 (C语言代码)浏览:552 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:1044 |
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:748 |
简单的a+b (C语言代码)浏览:752 |
用筛法求之N内的素数。 (C语言代码)浏览:1153 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:924 |
简单的a+b (C语言代码)浏览:333 |
C语言程序设计教程(第三版)课后习题5.7 (Java代码)浏览:877 |
C语言训练-数字母 (C语言代码)浏览:646 |