| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 84670 | sh25_wuyy | 加法运算(指针) | C++ | 通过 | 0 MS | 252 KB | 231 | 2026-02-13 22:51:53 |
#include<iostream> using namespace std; void GetTwoInts(int*a,int*b); int main(){ int num1,num2; GetTwoInts(&num1, &num2); cout<<num1+num2<<endl; return 0; }void GetTwoInts(int*a,int*b){ cin>>*a>>*b; }