返回列表 發帖

[作業] 函式的建立與執行 (五) - 列出連續數字

本帖最後由 tonyh 於 2014-8-23 16:33 編輯

利用自訂函式法, 設計一個程式, 讓使用者輸入前後兩數, 電腦就可列出前數到後數的連續數字.
譬如: 自訂一個 print(int,int) 的函式


  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void print(int,int);
  5. int main()
  6. {
  7.     int x,y;
  8.     cout<<"請輸入連續數列的第一個數: ";
  9.     cin>>x;
  10.     cout<<"請輸入連續數列的最後一個數: ";
  11.     cin>>y;
  12.     print(x,y);
  13.     system("pause");     
  14.     return 0;
  15. }
  16. void print(int x,int y)
  17. {
  18.     if(y>x)
  19.     {
  20.         for(int i=x; i<=y; i++)
  21.             cout<<i<<endl;      
  22.     }else
  23.     {
  24.         for(int i=x; i>=y; i--)
  25.             cout<<i<<endl;     
  26.     }     
  27. }   
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表