Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
104390 | 谭景年 | 02简单两数相加II | C++ | Wrong Answer | 1 MS | 276 KB | 219 | 2025-01-04 20:31:52 |
#include<iostream> //#include<> -> 导入 iostream=> 输入 输出 using namespace std; int main(){ int a=1; int b=2; int c=3; cin>>a; cin>>b; cin>>c; cout<<a+b; return 0; }
------Input------
2147483647 10
------Answer-----
2147483657
------Your output-----
-2147483639