Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136015 aklsd ASCII码 C++ Accepted 1 MS 276 KB 201 2025-11-08 20:10:33

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int T; cin>>T; int str[T]; for(int i=0;i<T;i++)cin>>str[i]; for(int j=0;j<T;j++)cout<<char(str[j]); return 0; }