返回列表 發帖

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int myPlus(int a)
  5. {
  6.         if(a==1)
  7.         {
  8.                 return 1;
  9.         }
  10.     return a+myPlus(a-1);
  11. }
  12. int main()
  13. {
  14.     int a;
  15.     cout<<"1+...+?:";
  16.     cin>>a;
  17.     cout<<1<<"+...+"<<a<<"="<<myPlus(a)<<endl;           
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

本帖最後由 朱奕祈 於 2024-5-8 16:25 編輯

我絕對不會說超簡單

TOP

返回列表