C语言题目输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数。
#include<stdio.h>intmain(){intletter=0,space=0,number=0,others=0;charnextchar;printf(...
#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<='z'||'A'<=nextchar<='Z')
letter++;
else if(nextchar==' ')
space++;
else if('0'<=nextchar<='9')
number++;
else
others++;
}
printf("letter=%d,space=%d,number=%d,others=%d\n",letter,space,number,others);
}
哪错啦 展开
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<='z'||'A'<=nextchar<='Z')
letter++;
else if(nextchar==' ')
space++;
else if('0'<=nextchar<='9')
number++;
else
others++;
}
printf("letter=%d,space=%d,number=%d,others=%d\n",letter,space,number,others);
}
哪错啦 展开
69个回答
展开全部
for(i=0;i<50;i++)
{
if(c=='\0')
break;////////////////////////你未必会输满50个字符吧,所以遇到'\0'就要结束循环
if((c>='A'&&c<='Z')||(c>='a'&&c<='z'))
letter++;
{
if(c=='\0')
break;////////////////////////你未必会输满50个字符吧,所以遇到'\0'就要结束循环
if((c>='A'&&c<='Z')||(c>='a'&&c<='z'))
letter++;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2009-12-30
展开全部
void main()
{int i,s=0,b=0,c=0,d=0,e=0;
char a[50];
gets(a);
for(i=0;i<50;i++)
{
if(a[i]>='A'&&a[i]<='Z')s++;
else
if(a[i]>='a'&&a[i]<='z')b++;
else
if(a[i]>=1&&a[i]<=9)c++;
else
if(a[i]=='')d++;
else e++;}
printf("A-Z:%d a-z:%d 1-9:%d space:%d others:%d ",s,b,c,d,e);
}
{int i,s=0,b=0,c=0,d=0,e=0;
char a[50];
gets(a);
for(i=0;i<50;i++)
{
if(a[i]>='A'&&a[i]<='Z')s++;
else
if(a[i]>='a'&&a[i]<='z')b++;
else
if(a[i]>=1&&a[i]<=9)c++;
else
if(a[i]=='')d++;
else e++;}
printf("A-Z:%d a-z:%d 1-9:%d space:%d others:%d ",s,b,c,d,e);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <stdio.h>
int main()
{
char s[100], *p;
int chars = 0, nums = 0, bs = 0, others = 0;
printf("请输入一个字符串:");
scanf("%s",s);
p =s;
while (*p) {
if ('a' <= *p && *p <= "z') || ('A' <= *p && *p <= "Z') {
chars++;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把gets(all);这句改成
char c;
int i=0;
while((c=getchar())!='\n')
{
if(i<N) all[i++]=c;
}
这样应该就好了
char c;
int i=0;
while((c=getchar())!='\n')
{
if(i<N) all[i++]=c;
}
这样应该就好了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<stdio.h>
int main()
{
char str[100];
int i=0;
int num=0,ch=0,blank=0,other=0;
gets(str);
while(str[i]!='\0')
{
if((str[i]>='A' && str[i]<='Z') || (str[i]>='a' && str[i]<='z'))
ch++;//字母
else if(str[i]>='0' && str[i]<='9')
num++;//数字
else if(str[i]==' ')
blank++;//空格
else
other++;
i++;
}
printf("数字%d个,字母%d个,空格%d个,其他%d个\n",num,ch,blank,other);
return 0;
}
int main()
{
char str[100];
int i=0;
int num=0,ch=0,blank=0,other=0;
gets(str);
while(str[i]!='\0')
{
if((str[i]>='A' && str[i]<='Z') || (str[i]>='a' && str[i]<='z'))
ch++;//字母
else if(str[i]>='0' && str[i]<='9')
num++;//数字
else if(str[i]==' ')
blank++;//空格
else
other++;
i++;
}
printf("数字%d个,字母%d个,空格%d个,其他%d个\n",num,ch,blank,other);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询