帮看看这个C程序那里错了

来源:百度知道 编辑:UC知道 时间:2024/06/18 14:11:36
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
1.程序分析:利用while语句,条件为输入的字符不为’\n’.

2.程序源代码:
#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<=’Z’)
letters++;
else if(c==’’)
space++;
else if(c>=’0’&&c<=’9’)
digit++;
else
others++;
}
printf("all in all:char=%d space=%d digit=%d others=%d\n",letters,
space,digit,others);
}
运行出来显示 Linker Error: Undefinde symbol _gerchar in module NONAME00.c

#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<='Z')
letters++;
else if(c==' ')
space++;
else if(c>='0'&&c<='9')
digit++;
else
others++;
}
printf("all in all:char=%d space=%d digit=%d others=%d\n",letters,
space,digit,others);
}
注意’与'的区别(全角和半角)

if(c>=’a’&&c<=’z’||c>=’A’&&c<=’Z’) 条件中与和或的优先级是不是有问题啊,我很久没用过c了,不记得了,你运行出来是哪不对啊

用一个数组保存字符串,然后对这个字符串再进行统计