问问这个的解决办法QAQ

可以看看这个哪里有问题嘛,我看不太明白,求解,非常感谢了🙏🙏

img

scanf_s("%c",&ch,1);
12行应该判断ch啊,你判断a干啥?
代码写的稀巴烂啊。几乎行行都是错的

重新帮你弄了一个,参考下


#include<stdio.h>
int main()
{
    char c;
    int letters=0,spaces=0,digits=0,others=0;
    printf("请输入一些字母:\n");
    while((c=getchar())!='\n')
    {
        if((c>='a'&&c<='z')||(c>='A'&&c<='Z'))
            letters++;
        else if(c>='0'&&c<='9')
            digits++;
        else if(c==' ')
            spaces++;
        else
            others++;
    }
    printf("字母=%d,数字=%d,空格=%d,其他=%d\n",letters,digits,spaces,others);
    return 0;
}