返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int total(int);
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"請輸入你階層數的預算數";
  8.     cin>>x;
  9.     cout<<"此階層運算的結果值為"<<total(x)<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
  13. int total(int x)
  14. {
  15.     if(x>1)
  16.          return x*total(x-1);
  17.     else
  18.          return 1;
  19. }
複製代碼

TOP

返回列表