题解
2023-08-13 16:58:04
发布于:浙江
1阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int node(int x){
if (x == 1)
return x;
return x + node(x - 1);
}
int main() {
int n;
cin >> n;
cout << node(n) + 1; //主要是思考过程,题解没什么好看的♂
return 0;
}
这里空空如也
有帮助,赞一个