返回列表 發帖

[隨堂測驗] 函式的建立與執行 (七) - 階層運算

本帖最後由 tonyh 於 2014-8-23 17:43 編輯

利用自訂函式法設計一程式, 讓使用者輸入一個階層數, 電腦計算出答案.
例如: 輸入 5   其算式為  1*2*3*4*5  因此答案是 120
        輸入 3   其算式為  1*2*3  因此答案是 6

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. long double calcu(int);
  5. int main()
  6. {
  7.     int x;
  8.     cout<<"請輸入階層運算的值(譬如 5! 便輸入 5): ";
  9.     cin>>x;
  10.     cout<<x<<"階層的運算結果值為"<<calcu(x)<<endl;
  11.     system("pause");     
  12.     return 0;
  13. }
  14. long double calcu(int x)
  15. {
  16.     long double temp=1;
  17.     for(int i=1; i<=x; i++)
  18.         temp*=i;    //temp=temp*i
  19.     return temp;
  20. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表