遞歸法累計求和

遞歸法累計求和 ios #include<stdio.h> #include<iostream> using namespace std; int sum(int n) {          if (n == 1)return 1;     else return  sum(n - 1)+n; } int main() {     int n;     cout << "輸入n" << endl;
相關文章
相關標籤/搜索