展开全部
. #include<stdio.h>
void fun(char *a)
{
int m=0,n=0,p=0,q=0;
int i;
for(i=0;a[i]!='\0';i++)
{
if('A'<=a[i]&&a[i]<='Z'||'a'<=a[i]&&a[i]<='z') m++;
else if(a[i]>='0'&&a[i]<='9')++n;
else if(a[i]==' ')++p;
else ++q;
}
printf("字符的个数为:%d\n",m);
printf("数字的个数为:%d\n",n);
printf("空格的个数为:%d\n",p);
printf("其他字符的个数为:%d\n",q);
}
void main()
{
char s[20];
printf("输入字符串:");
gets(s);
puts(s);
fun(s);
}
void fun(char *a)
{
int m=0,n=0,p=0,q=0;
int i;
for(i=0;a[i]!='\0';i++)
{
if('A'<=a[i]&&a[i]<='Z'||'a'<=a[i]&&a[i]<='z') m++;
else if(a[i]>='0'&&a[i]<='9')++n;
else if(a[i]==' ')++p;
else ++q;
}
printf("字符的个数为:%d\n",m);
printf("数字的个数为:%d\n",n);
printf("空格的个数为:%d\n",p);
printf("其他字符的个数为:%d\n",q);
}
void main()
{
char s[20];
printf("输入字符串:");
gets(s);
puts(s);
fun(s);
}
展开全部
#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 letters is:%d\n",letter);
printf("The number of spaces is:%d\n",space);
printf("The number of digits is:%d\n",digit);
printf("The number of other words is:%d\n",others);
return 0;
}
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 letters is:%d\n",letter);
printf("The number of spaces is:%d\n",space);
printf("The number of digits is:%d\n",digit);
printf("The number of other words is:%d\n",others);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
什么语言编?高级语言还是汇编啊?还是C?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询