返回列表 發帖
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int a(int b)
  4. {
  5.     if(b<2)
  6.         return 1;
  7.     else
  8.         return b*a(b-1);
  9. }
  10. int main()
  11. {
  12.     int c;
  13.     cin>>c;
  14.     cout<<a(c);
  15.     return 0;
  16. }
複製代碼

TOP

返回列表