一个C语言程序关于输入一行字符分别统计出其中字母、空格、数字和其他字符的个数
一个C语言程序关于输入一行字符分别统计出其中字母、空格、数字和其他字符的个数#include<stdio.h>intletter,digit,space,others;v...
一个C语言程序关于输入一行字符分别统计出其中字母、空格、数字和其他字符的个数#include<stdio.h>
int letter,digit,space,others;
void main()
{
void count(char[]);
char text[80];
printf("Please enter string:\n");
gets(text);
printf("string:\n");
puts(text);
letter=0;
digit=0;
space=0;
others=0;
count(text); printf("letter:%d,digit:%d,space:%d,others:%d\n",letter,digit,space,others);
}
void count(char str[])
{
int i;
for(i=0;str[i]!='\0';i++)
if((str[i]>='a'&&str[i]<='z')||(str[i]>='A'&&str[i]<='Z'))
letter++;
else if(str[i]>='0'&&str[i]<='9')
digit++;
else if(str[i]==32)
space++;
else
others++;
}
那个str[i]是什么意思,还有为什么str[i]==32时space++ 展开
int letter,digit,space,others;
void main()
{
void count(char[]);
char text[80];
printf("Please enter string:\n");
gets(text);
printf("string:\n");
puts(text);
letter=0;
digit=0;
space=0;
others=0;
count(text); printf("letter:%d,digit:%d,space:%d,others:%d\n",letter,digit,space,others);
}
void count(char str[])
{
int i;
for(i=0;str[i]!='\0';i++)
if((str[i]>='a'&&str[i]<='z')||(str[i]>='A'&&str[i]<='Z'))
letter++;
else if(str[i]>='0'&&str[i]<='9')
digit++;
else if(str[i]==32)
space++;
else
others++;
}
那个str[i]是什么意思,还有为什么str[i]==32时space++ 展开
4个回答
展开全部
str[i]是取字符串中第i个字符, str[i]==32判断i字符是否为空格, 32为空格符的asc码
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
C语言经典例子之统计英文、字母、空格及数字个数
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |