#includevoid main(){ char c; int i; scanf("%d",&i); //输入ASCII码。 c=i; printf("%c\n",c); //输出对应字符。} 补充://已经是最简单的了,没有比这更简单的程序了。