Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
95137 | 陈治宸 | 03输出字符序号 | C++ | Wrong Answer | 1 MS | 260 KB | 154 | 2024-10-26 22:22:46 |
#include<iostream> using namespace std; int main(){ char a='w'; cout<<"对应编码"<<int(a)<<"占用字节"<<sizeof(a) <<endl; return 0; }
------Input------
+
------Answer-----
43
------Your output-----
对应编码119占用字节1