题解rose2023-07-30 16:01:26发布于:浙江0阅读0回复0点赞#include<bits/stdc++.h> using namespace std; int a(int x){ if(x == 1) return 1; return a(x-1)+x; } int main(){ int n; cin>>n; cout<<a(n); return 0; } 有帮助,赞一个去预览0/2000发布这里空空如也
有帮助,赞一个