题目 (综合练习 中)输入一行字符,分别统计求出其中英文字母、空格、数字和其他字符的个数并输出结果。 相关知识点: 试题来源: 解析#include main() { char str[81]; int i ; int letter,space ,num ,other ; char c; printf ("Please enter a string : ");...