Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2293 孙浚轩 ASCII码 C++ Accepted 9 MS 256 KB 166 2023-12-23 16:58:25

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int t,n; cin>>t; for(;t>0;t--){ cin>>n; cout<<(char)n; } return 0; }