Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91271 | 李昊宇 | 03字符转ASCLL码 | C++ | Wrong Answer | 0 MS | 268 KB | 105 | 2024-09-21 14:55:37 |
#include<iostream> using namespace std; int main(){ int a=73; cout<<char(a)<<endl; }
------Input------
E
------Answer-----
69
------Your output-----
I