提交时间:2026-05-21 17:37:19

运行 ID: 88914

#include <iostream> using namespace std; int main() { int n; //输入整型(int)数据 cin >> n; //输入整数n cout << (char)n << endl;//n转化为字符类型数据,直接输出 return 0; }