標題:
列出連續數字
[打印本頁]
作者:
tonyh
時間:
2012-6-16 16:07
標題:
列出連續數字
本帖最後由 tonyh 於 2012-6-16 17:08 編輯
利用自訂函數法, 設計一個程式, 讓使用者輸入前後兩數, 電腦就可列出前數到後數的連續數字.
using namespace std;
int count(int, int);
int main()
{
int x, y;
cout<<"請輸入連續數列的第一個數: ";
cin>>x;
cout<<"請輸入連續數列的最後一個數: ";
cin>>y;
if(x>y)
{
cout<<"最後一個數必須大於或等於第一個數!"<<endl;
return main();
}
count(x,y);
system("pause");
return 0;
}
int count(int x, int y)
{
while(x<=y)
{
cout<<x<<endl;
x++;
}
}
複製代碼
#include<iostream>
using namespace std;
int count(int, int);
int main()
{
int x, y;
count(x,y);
system("pause");
return 0;
}
int count(int x, int y)
{
cout<<"請輸入連續數列的第一個數: ";
cin>>x;
cout<<"請輸入連續數列的最後一個數: ";
cin>>y;
if(x>y)
{
cout<<"最後一個數必須大於或等於第一個數!"<<endl;
return main();
}
for(int i=x; i<=y; i++)
{
cout<<i<<endl;
}
}
複製代碼
作者:
劉漢文
時間:
2012-6-16 17:00
本帖最後由 劉漢文 於 2012-6-16 17:01 編輯
#include<iostream>
using namespace std;
int count(int ,int);
int main()
{
int x, y;
cout<<"請輸入連續數的第一個數: "<<endl;
cin>>x;
cout<<"請輸入續數的第二個數: "<<endl;
cin>>y;
if(x>y)
{
cout<<"最後一個數必須大於或等於第一個數"<<endl;
return main();
}
count(x,y);
system("pause");
return 0;
}
int count(int x, int y)
{
while(x<=y)
{
cout<<x<<endl;
x++;
}
}
複製代碼
作者:
t3742238
時間:
2012-6-16 17:02
#include<iostream>
using namespace std;
int count(int, int);
int main()
{
int x,y;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
if(x>y)
{
cout<<"最後依個數必須大於或等於第一個數"<<endl;
return main();
}
count(x,y);
system("pause");
return 0;
}int count(int x,int y)
{
while(x<=y)
{
cout<<x<<endl;
x++;
}
}
複製代碼
作者:
尤泓鈞
時間:
2012-6-16 17:02
#include<iostream>
using namespace std;
int count(int ,int );
int main()
{
int x, y;
cout<<"請輸入數列的第一個數:"<<endl;
cin>>x;
cout<<"請輸入數列的第二個數:"<<endl;
cin>>y;
if(x>y)
{
cout<<"最後的數一定要大於第一個數"<<endl;
return main();
}
count(x,y);
system ("pause");
return 0;
}
int count (int x, int y)
{
while(x<=y)
{
cout<<x<<endl;
x++;
}
}
複製代碼
作者:
蔡昀佑
時間:
2012-6-16 17:04
#include<iostream>
using namespace std;
int count(int, int);
int main()
{
int x, y;
cout<<"請輸入連續數列的第一個數: ";
cin>>x;
cout<<"請輸入連續數列的最後一個數: ";
cin>>y;
if(x>y)
{
cout<<"最後一個數必須大於或等於第一個數!"<<endl;
return main();
}
count(x,y);
system("pause");
return 0;
}
int count(int x, int y)
{
while(x<=y)
{
cout<<x<<endl;
x++;
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2