8.2 习题编写一个程序,在遇到EOF之前,把输入作为字符流读取,程序需要打印每个输入的字符及其相应的ASCLL十进制..........
#include int main(void){ char ch; int number = 0; printf("please enter the word you want to print: "); while((ch = getchar() != EOF)) //错误点! { switch (ch) {