输入一个字符串,分别统计并输出其中数字字符、字母字符及其它字符的个数。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了输入一个字符串,分别统计并输出其中数字字符、字母字符及其它字符的个数。相关的知识,希望对你有一定的参考价值。

参考技术A

#include<stdio.h>

int main()

int a,b,c,d,ch;

a=b=c=d=0;

while((ch=getchar())!='\\n')

if(ch>='0'&&ch<='9')

else if((ch>='a'&&ch<='z')||(ch>='A'&&ch<='Z'))

else

printf("%d%d%d%d\\n",a,b,c,d);//输出结果。

return 0;

扩展资料:

while语句若一直满足条件,则会不断的重复下去。但有时,需要停止循环,则可以用下面的三种方式:

一、在while语句中设定条件语句,条件不满足,则循环自动停止。

如:只输出3的倍数的循环;可以设置范围为:0到20。

二、在循环结构中加入流程控制语句,可以使用户退出循环。

1、break流程控制:强制中断该运行区内的语句,跳出该运行区,继续运行区域外的语句。

2、continue流程控制:也是中断循环内的运行操作,并且从头开始运行。

三、利用标识来控制while语句的结束时间。

C++ 输入一行字符,分别统计出其中英文字母个数~~

拜托各位,写简单点,最好标上注释,谢谢!
C++
输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数

#include <stdio.h>

int main()

char c;

int letters=0,space=0,digit=0,other=0;

printf("请输入一行字符:");

while ((c=getchar())!='\\n')

if (c >= 'a'&&c <= 'z' || c >= 'A'&&c <= 'Z')

letters++;

else if (c == ' ')

space++;

else if (c >= '0'&&c <= '9')

digit++;

else

other++;

printf("字母数:%d\\n空格数:%d\\n数字数:%d\\n其他字符:%d\\n",letters,space,digit,other);

return 0;

扩展资料

在 C 语言中,字符串实际上是使用 null 字符 '\\0' 终止的一维字符数组。因此,一个以 null 结尾的字符串,包含了组成字符串的字符。

下面的声明和初始化创建了一个 "Hello" 字符串。由于在数组的末尾存储了空字符,所以字符数组的大小比单词 "Hello" 的字符数多一个。

char greeting[6] = 'H', 'e', 'l', 'l', 'o', '\\0';

依据数组初始化规则,可以把上面的语句写成以下语句:

char greeting[] = "Hello";

参考技术A #include<stdio.h>
main()

int letter=0,number=0,blank=0,other=0;\\分别用来统计字母,数字,空格和其它字符的个数
char c; \\用来读取字符
while ((c=getchar())!='\n') \\结束条件,当读入的是回车,用c每次读取一个字符进行比较

if(c>='a'&&c<='z'||c>='A'&&c<='Z') \\判断,介于a和z之间或A和Z之间的为字母
letter++;
else

if(c>='0'&&c<='9') \\0到9之间的为数字
number++;
else

if(c==' ') \\判断是否为空格
blank++;
else
other++; \\其它情况



printf ("There are %d letters,%d numbers,%d blanks and %d other character.\n",letter,number,blank,other);
本回答被提问者采纳
参考技术B # include<iostream>
# include<stdlib.h>
#include<string>
//#include<sstream.h>
//#include<fstream>
using namespace std ;

main()

int Scnt[26],Bcnt[26],m_space;
int Acnt[128];

char temp,sub;
int i,len,lenbak;
string str;
cout<<"###############################################################"<<endl;
cout<<"# #"<<endl;
cout<<"# 欢迎使用字符统计!本例子可以统计ASCII中可以显示的任意字符数 #"<<endl;
cout<<"# 请输入一串字符,输入结束后请按两次回车键!谢谢! #"<<endl;
cout<<"# #"<<endl;
cout<<"###############################################################"<<endl;
getline(cin,str);
cout<<str<<endl;
len=str.length();
m_space=0;
for(i=0;i<26;i++)

Scnt[i]=0;
Bcnt[i]=0;

for(i=0;i<128;i++)

Acnt[i]=0;

for(i=0;i<=str.length();i++)

strcpy(&temp,str.substr(i,1).c_str());
for(sub='a';sub<='z';sub++)

if(temp==sub)

Scnt[sub-0x61]++;


for(sub='A';sub<='Z';sub++)

if(temp==sub)

Bcnt[sub-0x41]++;


if(temp==' ')

m_space++;

for(sub='!';sub<='~';sub++)

if(temp==sub)

Acnt[sub]++;




cout<<"小写字母统计:\n";
len=0;
lenbak=1;
for(i=0;i<26;i++)

if(Scnt[i]!=0)

cout<<char(i+0x61)<<" : "<<Scnt[i]<<" 个\t";
len++;


if(len%5==0)

if(lenbak!=len)

cout<<endl;
lenbak=len;




if(len==0)

cout<<"无小写字母!"<<endl<<endl;

len=0;
lenbak=1;
cout<<"\n大写字母统计:\n";
for(i=0;i<26;i++)

if(Bcnt[i]!=0)

cout<<char(i+0x41)<<" : "<<Bcnt[i]<<" 个\t";
len++;


if(len%5==0)

if(lenbak!=len)

cout<<endl;
lenbak=len;




if(len==0)

cout<<"无大写字母!"<<endl;

cout<<endl<<"空格统计: ";
if(m_space==0)

cout<<"无空格!";

else

cout<<m_space<<"个";

cout<<endl<<"所有ASCII 码统计:\n";
len=0;
lenbak=1;
for(i=33;i<128;i++)

if(Acnt[i]!=0)

cout<<"'"<<char(i)<<"':"<<Acnt[i]<<" 个 ";

if(len%5==0)

if(lenbak!=len)

cout<<endl;
lenbak=len;



cout<<endl;
system("pause");
return 0;
参考技术C #include<stdio.h>
main()

int
letter=0,number=0,blank=0,other=0;\\分别用来统计字母,数字,空格和其它字符的个数
char
c;
\\用来读取字符
while
((c=getchar())!='\n')
\\结束条件,当读入的是回车,用c每次读取一个字符进行比较

if(c>='a'&&c<='z'||c>='A'&&c<='Z')
\\判断,介于a和z之间或A和Z之间的为字母
letter++;
else

if(c>='0'&&c<='9')
\\0到9之间的为数字
number++;
else

if(c=='
')
\\判断是否为空格
blank++;
else
other++;
\\其它情况



printf
("There
are
%d
letters,%d
numbers,%d
blanks
and
%d
other
character.\n",letter,number,blank,other);
参考技术D #include<stdio.h>
main()

intletter=0,number=0,blank=0,other=0;\\分别用来统计字母,数字,空格和其它字符的个数
charc;\\用来读取字符
while((c=getchar())!='\n')\\结束条件,当读入的是回车,用c每次读取一个字符进行比较

if(c>='a'&&c<='z'||c>='A'&&c<='Z')\\判断,介于a和z之间或A和Z之间的为字母
letter++;
else

if(c>='0'&&c<='9')\\0到9之间的为数字
number++;
else

if(c=='')\\判断是否为空格
blank++;
else
other++;\\其它情况



printf("Thereare%dletters,%dnumbers,%dblanksand%dothercharacter.\n",letter,number,blank,other);

以上是关于输入一个字符串,分别统计并输出其中数字字符、字母字符及其它字符的个数。的主要内容,如果未能解决你的问题,请参考以下文章

,共有3行文字,每行有80个字符。要求分别统计出其中英文大写字母小写字母数字空格以及其他字符的个数

C语言编程题:从键盘输入一串字符,统计其中的数字与字母个数并输出

c语言 用指针方法处理:输入一行字符,统计并输出其中大写字母、小写字母、空格、数字及其它字符的个数。

如何用c语言分离字符串中的字母和数字并分别输出?

Java学习:输入一串字符串,分别统计出其中的中英文字母,空格,数字和其他字符的个数

统计不同字符个数。用户从键盘输入一行字符,编写一个程序,统计并输出其中英文字符数字空格和其他字符的个数