# include<iostream> using namespace std; int main(){ char ch; //字符类型变量,用来存储字符 int a; //整数类型变量,用来存储码值 cin>>a; ch=a; cout<<ch; return 0; }