[求助]计数问题
下面这段程序运行时会出现乱码,不知道问什么?//宏定义
#include<stdio.h>
#define MAXLEN 100
//定义全局变量
int nchar,ndigit,nspace,nother;
//定义函数
int count(char s[MAXLEN]);
//主函数
int
main()
{
char a[MAXLEN];
//要求输入字符串
printf("please input a string:\n");
scanf("%s",a);
//调用count函数
count(a);
//输出结果
printf(" nchar=%d,\n ndigit=%d,\n nspace=%d,\n nother=%d\n",nchar,ndigit,nspace,nother);
return(0);
}
/*count 函数*/
int
count( char s[MAXLEN] )
{
int j;
char c;
nchar=ndigit=nspace=nother=0;
for(j=0;j<MAXLEN&&s[j]!='\n';j++)
{
c=s[j];
if(c>='A'&&c<='Z')
nchar++;
else if( c>='a'&&c<='z')
nchar++;
else if(c>='0'&&c<='9')
ndigit++;
else if(c==' ')
nspace++;
else
nother++;
}
return(0);
}