返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int calcu(int);
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"請輸入奇數的項次: ";
  8.     cin>>x;
  9.     cout<<"奇數中, 第"<<x<<"項為"<<calcu(x)<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
  13. int calcu(int x)
  14. {
  15.     int y;
  16.     if(x==1)
  17.     {
  18.         y=1;
  19.     }else
  20.     {
  21.         y=(x-1)*2+1;
  22.     }
  23.     return y;
  24. }
複製代碼

TOP

返回列表