Run ID:89925
提交时间:2024-09-07 12:34:38
#include <iostream> using namespace std; int main(){ //数字强制类型转换字母 int n = 66; cout<<(char)n; return 0; }