[求助]大家来看看啊!!???????????
写一个程序,从标准输入接收一行正文,并统计该行中用户指定的某个字符出现的次数,印出结果..

我是大家最好的朋友啊!!
#include<stdio.h>
int main()
{
char str;
int n=0;
printf("input str:");
while( str != '\n' )
{
str=getchar();
if( str == 'a' )// a为要统计的字符
n++;
}
printf("\n%d\n",n);
}