Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
90682 | 何睿函 | 02简单输入输出 | C++ | Wrong Answer | 1 MS | 264 KB | 127 | 2024-09-16 12:24:56 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; a=1; cout<<a<<endl; b=2; cout<<b; return 0; }
------Input------
0
------Answer-----
0
------Your output-----
1 2