2 条题解
- 1
信息
- ID
- 381
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 1
- 标签
- (无)
- 递交数
- 141
- 已通过
- 96
- 上传者
#include <bits/stdc++.h>
using namespace std;
//返回 1+2+3+...+(x-1)+x
int f(int x)
{
if (x == 1)
return 1;
return f(x - 1) + x;
}
int main()
{
int n;
cin >> n;
cout << f(n) << endl;
return 0;
}