一个统计字母出现次数的程序.无错,但无法运行.求高手帮忙,谢谢!
#include<stdio.h>#include<string.h>
#define N 80
main()
{
char a[N],m,n; int i,k,j,count=0;
gets(a);
k=strlen(a);
for(i=0;m<'z';i++)
{ m='a'+i;n='A'+i;
for(j=0;i<k;j++)
{
if(a[j]==m||a[j]==n) count++;
}
printf("the count of %c and %c=%d",m,n,count);
count=0;
}
}