Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
64318 | 逸凡 | 求1+2+3+... | C++ | 通过 | 0 MS | 240 KB | 175 | 2025-04-20 10:03:15 |
#include<bits/stdc++.h> using namespace std; int sum(int n){ if(n==1) return 1; else return n+sum(n-1); } int main(){ int x; cin>>x; cout<<sum(x); return 0; }