| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 87432 | sh25_wuyy | 求1+2+3+... | C++ | 通过 | 0 MS | 240 KB | 202 | 2026-04-18 09:36:54 |
#include<iostream> using namespace std; int sum(int n){ if(n==1){ return 1; }return n+sum(n-1); }int main(){ int n; cin>>n; cout<<sum(n)<<endl; return 0; }