Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
12435 | 马德理666 | [在线测评解答教程] A+B Problem | C++ | 通过 | 0 MS | 244 KB | 191 | 2023-03-25 10:39:40 |
#include<bits/stdc++.h> using namespace std; int he(int a,int b) { int c=0; c=a+b; return c; } int main(){ int a,b,plus; cin>>a>>b; plus=he(a,b); cout<<plus; }