#include<stdio.h>
main()
{
int s,a=0,b=0,c=0,d=0;
scanf("%2d",&s);
if((s>=65&&s<=91)||(s>=97&&s<=123));
a=a+1;
else if(s="");
b=b+1;
else if(s<=1&&s>=9);
c=c+1;
else
d=d+1;
printf(%d%d%d%d,abcd);
}
帮忙看看哪错了,谢谢!!!!!
还是不对“c(8) : warning C4047: '=' : 'int ' differs in levels of indirection from 'char [1]'”
追答#include
main()
{
int a=0,b=0,c=0,d=0;
char s;
scanf("%c",&s);
while(s!='\n')
{
if(((s>='a')&&(s='A')&&(s='0'&& s<='9')
c=c+1;
else
d=d+1;
scanf("%c",&s);
}
printf("字符%d 空格%d 数字%d 其他%d",a,b,c,d);
}
老兄,说实话,你错的有点多……我都快重写了……
...统计出其中的英文字母、空格、数字和其他字符的数。
include <stdio.h> int main(){ int letter=0,space=0,digit=0,others=0;char c;while((c=getchar())!='\\n'){ if(c==' ')space++;else if(c>='1'&&c<='9')digit++;else if((c>='a'&&c<='z')||c>='A'&&c<='Z')letter++;else others++;} printf("The number of...
...分别统计出其中英文字母,空格,数字和其他字符的个数。
else if('0'<=nextchar<='9')修改后:include <stdio.h> int main(){ int letter=0,space=0,number=0,others=0;char nextchar;printf("Input your string\\n");for(;nextchar!='\\n';){ scanf("%c",&nextchar);if('a'<=nextchar&&nextchar<='z'||'A'<=nextchar&&nextchar<='Z')...
...统计出大写字母,小写字母,空格,数字和其他字符?
printf("大写字母:%d, 小写字母:%d, 空格:%d, 数字:%d, 其他:%d\\n",upper, lower, space, digit, other);return 0;}
...结束标志,分别统计出大写字母,小写字母,空格,数字和其他字符的...
因为字符串中有空格所以不能使用scanf函数来接收键盘输入的字符串,因为scanf遇到空格和回车结束输入,所以需要使用gets来接收键盘输出的字符串,接着依次判断并累加,最后输出即可。 参考代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 #include <stdio.h> int main() ...
从键盘输入一串字符串,已回车结束,分别统计输出其中数字、字母和其他字...
='\\n') \/\/循环输入字符,直到输入回车{if(c>='a' && c<='z' || c>='A' && c<='Z')letters++;else if(c==' ')space++;else if(c>='0' && c<='9')digit++; else others++;}printf("统计:字母=%d 空格=%d 数字=%d 其它=%d\\n",letters,space,digit,others);...
输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数
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个",...
输入一行字符,分别统计出其中的英文字母、空格、数字和其他字符的个数...
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'||...
输入一行字符,以回车键结束输入 分别统计其中出现的大写英文字母 小写...
include <stdio.h>int main(){ int letter=0,space=0,digit=0,others=0; char c; while((c=getchar())!='\\n'){ if(c==' ') space++; else if(c>='1'&&c<='9') digit++; else if((c>='a'&&c<='z')||c>='A'&&c<='Z') letter++; els...
C语言 输入一行字符,分别统计求出其中英文字母、空格、数字和其他字符的...
int i=0,j=0,k=0,m=0,da=0,xiao=0;printf("please input the string\\n");while((s=getchar())!='\\n') \/*循环从键盘读入字符直到一行结束(输入回车)*\/ { if((s='a')||(s'A')){ if(s='A')da++;if(s='a')xiao++;i++; \/*i存入字母数*\/ } else if(s==' ')...
c语言 输入一行字符,以回车作为结束,依次输出大写字母、小写字母、空...
4];for(i=0;i<5;i++)a[i]=0;char c[];while(1){ gets(c);judge(c);} for(i=0;i<5;i++)printf(“大写字母 小写字母 空格 数字字符 其他字符");printf("%5d",a[i]);return 0;} 希望我的答案对你有所帮助,如果还有问题可以加我qq 1171115772 我会及时回你的 ...