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

TOP

返回列表