输入一行字符,分别统计出其中英文字母、空格# include int main(){int n =

发布时间:2021-03-04 22:31:42

输入一行字符,分别统计出其中英文字母、空格# include int main(){int n =

网友回答

#include
void main()
{\x09int letter, space, number, other;
\x09char ch;
\x09letter = space = number = other = 0;
\x09while((ch = getchar()) != '\n')
\x09\x09if('A'
以上问题属网友观点,不代表本站立场,仅供参考!