#include <stdio.h>
void main ()
{char x;
printf ("请输入一串字符\n");
scanf("%c",&x);
int letter=0,blank=0,number=0,other=0;
while((x=getchar( ))!='\n')
{
if('a'<=x&&x<='z'||'A'<=x&&x<='Z')
letter++;
else if(x==' ')
blank++;
else if('0'<=x&&x<='9')
number++;
else
other++;
}
printf("字母的个数%d,空格的个数%d,数字的个数%d,其他符号的个数%d",letter,blank,number,other);
求解,错在哪里了呢,为什么输入的第一个符号不能读出来
#include<stdio.h>
int main()
{
char c;
int letters=0,spaces=0,digits=0,others=0;
printf("请输入一串任意的字符:\n");
while((c=getchar())!='\n')
{
if((c>='a'&&c<='z')||(c>='A'&&c<='Z'))
letters++;
else if(c>='0'&&c<='9')
digits++;
else if(c==' ')
spaces++;
else
others++;
}
printf("字母有%d个,数字有%d个,空格有%d个,其他有%d个",letters,digits,spaces,others);
return 0;
}
while语句若一直满足条件,则会不断的重复下去。但有时,需要停止循环,则可以用下面的三种方式:
一、在while语句中设定条件语句,条件不满足,则循环自动停止。
如:只输出3的倍数的循环;可以设置范围为:0到20。
二、在循环结构中加入流程控制语句,可以使用户退出循环。
1、break流程控制:强制中断该运行区内的语句,跳出该运行区,继续运行区域外的语句。
2、continue流程控制:也是中断循环内的运行操作,并且从头开始运行。
三、利用标识来控制while语句的结束时间。
参考资料来源:
C语言经典例子之统计英文、字母、空格及数字个数
#include <stdio.h>
void main ()
{char x;
printf ("请输入一串字符\n");
//scanf("%c",&x); 这一行应该去掉
int letter=0,blank=0,number=0,other=0;
while((x=getchar( ))!='\n')
{
if('a'<=x&&x<='z'||'A'<=x&&x<='Z')
letter++;
else if(x==' ')
blank++;
else if('0'<=x&&x<='9')
number++;
else
other++;
}
printf("字母的个数%d,空格的个数%d,数字的个数%d,其他符号的个数%d",letter,blank,number,other);
}
这样应该可以了,你试试看。
来自:求助得到的回答输入一行字符,分别统计出其中的英文字母,空格,数字和其它字符的个...
} printf("字母有%d个,数字有%d个,空格有%d个,其他有%d个",letters,digits,spaces,others);return 0;}
输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数
当输入的是大写或小写字母(ASCII值为65到90或97到122),就增加letters计数。如果字符是数字(ASCII值为48到57),则增加digits计数。遇到空格(ASCII值为32),则增加spaces计数。其他所有不是字母、数字或空格的字符,都被归类为others。最后,程序会输出四种字符的个数。程序中使用的while语句表示在满...
输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数...
【答案】:程序分析:利用while语句,条件为输入的字符不为’\\n’。程序源代码如下。include"stdio.h"main(){ char c;int letters=0,space=0,digit=0,others=0;printf("please input some characters\\n");while((c=getchar())!='\\n'){ if(c>='a'&&c<='Z'||c>='A'&&c<=...
输入一行字符,分别统计出其中的英文字母、空格、数字和其他字符的个数...
1 while语句:include<stdio.h> int main(void){ \/\/输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数。char ch;int char_num=0,kongge_num=0,int_num=0,other_num=0;while((ch=getchar())!='\\n')\/\/回车键结束输入,并且回车符不计入 { if(ch>='a'&&ch<='z'||...
5.1输入一行字符,分别统计出其中的英文字母、数字、空格和其它字符的个...
1、读入字符,直到遇到换行结束。2、对于每个字符,判断是字母还是数字,或者空格,或者是其它字符。3、对于每个字符判断后,对应类别计数器自加。4、最终输出结果。三、参考代码:include <stdio.h>int main(){ int a,b,c,d,ch; a=b=c=d=0;\/\/计数器初始化为0. while((ch=getchar...
python 输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个...
)==1)))空格个数=len(list(i for i in 输入一行字符 if i==" "))其他个数=len(输入一行字符)-数字个数-中英文字母个数-空格个数print("{0}中有{1}个数字,{2}个中英文字母,{3}个空格个数,{4}个其他".format(输入一行字符,数字个数,中英文字母个数,空格个数,其他个数))...
输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数
incclude<stdio.h> void main(){ int y=0,k=0,s=0,q=0;char c;clrscr();while((c=getchar())!='\\n'){ if(c>='a'&&c<='z'||c>='A'&&c<='Z')y++;else if(c==32)\/*空格的ASCII码*\/ k++;else if(c>=48&&c<=57)\/*48是0的ASCII码,57是9的ASCII码*\/ s++;el...
用C语言编程:输入一行字符,分别统计出其中英文字母、空格、数字和其他字...
include <stdio.h> void main(){ char line[30];int i,count1=0,count2=0,count3=0,count4=0;printf("\\n请输入一行字符: ");gets(line);i=0;while(line[i]!='\\0'){ if(((line[i]>=97) && (line[i]<=122))||((line[i]>=65) && (line[i]<=90))){ count1++;} ...
C语言编程:输入一行字符,统计其中英文字母的个数?
include<stdio.h> int main(){char s[200];int i,n=0;gets(s);for(i=0;s[i];i++)if(s[i]>='A'&&s[i]<='Z'||s[i]>='a'&&s[i]<='z')n++;printf("%d\\n",n);getch();return 0;}
输入一行字符,分别统计出其中英文字母,空格,数字和其它字符的个数.
int main(){ char num;int char_num=0,kongge_num=0,int_num=0,other_num=0;while((num=getchar())!='\\n') \/* 这里 *\/ { if(num>='a'&&num<='z'||num>='A'&&num<='Z'){ char_num++;} else if(num==' ') \/* 这里 *\/ { kongge_num++;} else if(num>='0'...