Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
109108 scscsc [在线测评解答教程] 求和 C++ Accepted 1 MS 272 KB 191 2025-01-27 16:57:00

Tests(10/10):


Code:

#include<iostream> using namespace std; long long ab(int n){ if(n==1) return 1; return n+ab(n-1); } int main(){ int n; while(cin>>n){ cout<<ab(n)<<endl; } }