Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
58221 GT3RS 飞起来@阚 求1+2+3+... C++ 通过 0 MS 248 KB 174 2024-12-05 16:46:30

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int lj(int n){ if(n==1) return 1; return lj(n-1)+n; } int main(){ int n; cin>>n; cout<<lj(n); return 0; }


测评信息: