C程序设计中从键盘读入任意一个字符,输出这个字符对应的AACII码值

如题所述

第1个回答  2016-10-14
#include <stdio.h>
int main() {
char c;
while(scanf("%d", &c)!=EOF) {
printf("%d\n", c);

}
}本回答被网友采纳
第2个回答  2016-10-14

相似回答