返回列表 發帖

[作業] 奇數列中的第N個數為?

本帖最後由 tonyh 於 2012-7-10 10:33 編輯

利用函數法, 設計一程式, 使能推算奇數列中第N項的值.

譬如: 1 3 5 7 9...  因此, 第5項的值為9
  1. #include<iostream>
  2. using namespace std;
  3. int calcu(int x)
  4. {
  5.     int y;
  6.     y=x*2-1;
  7.     cout<<"奇數列中的第"<<x<<"個數的值是"<<y<<endl;
  8. }
  9. int main()
  10. {
  11.     int x;
  12.     cout<<"請輸入欲推算的奇數列項次: ";
  13.     cin>>x;
  14.     calcu(x);
  15.     system("pause");
  16.     return 0 ;
  17. }
複製代碼

返回列表