本帖最後由 tonyh 於 2012-8-9 09:34 編輯
在螢幕上顯示指定範圍內的連續數字, 讓使用者自行輸入初始值與終止值,
譬如當使用者分別輸入3與6時, 執行結果為 3 4 5 6
若輸入11與17時, 執行結果則為 11 12 13 14 15 16 17- #include<iostream>
- using namespace std;
- int main()
- {
- int x, y;
- cout<<"請輸入初始值: ";
- cin>>x;
- cout<<"請輸入終止值: ";
- cin>>y;
- for(int i=x; i<=y; i++)
- {
- cout<<i<<" ";
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |