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