標題:
[作業] 三數比大小 (由小而大排列出)
[打印本頁]
作者:
tonyh
時間:
2011-10-29 17:27
標題:
[作業] 三數比大小 (由小而大排列出)
本帖最後由 tonyh 於 2011-11-5 16:39 編輯
試設計一個小程式, 讓使用者任意輸入三個大小不同的數, 接著電腦回應出這三個數的大小順序, 由小而大排列出.
譬如:
當使用者依序輸入2, 8, 5, 電腦會回應 2<5<8
當使用者依序輸入7, 3, 9, 電腦會回應 3<7<9
本帖隱藏的內容需要回復才可以瀏覽
作者:
許逸瑋
時間:
2011-10-31 22:27
本帖最後由 許逸瑋 於 2011-11-5 16:14 編輯
#include <iostream>
using namespace std;
int main()
{
int a, b, c;
cout<<"請輸入第一個數"<<endl;
cin>>a;
cout<<"請輸入第二個數"<<endl;
cin>>b;
cout<<"請輸入第三個數"<<endl;
cin>>c;
if(a>b&&b>c)
{
cout<<c<<"<"<<b<<"<"<<a<<endl;
}
else if(a>c&&c>b)
{
cout<<c<<"<"<<b<<"<"<<a<<endl;
}
else if(c>a&&a>b)
{
cout<<b<<"<"<<a<<"<"<<c<<endl;
}
else if(c>b&&b>a)
{
cout<<a<<"<"<<b<<"<"<<c<<endl;
}
else if(b>a&&a>c)
{
cout<<c<<"<"<<a<<"<"<<b<<endl;
}
else if(b>c&&c>a)
{
cout<<a<<"<"<<c<<"<"<<b<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t3742238
時間:
2011-11-5 13:15
本帖最後由 t3742238 於 2011-11-5 16:11 編輯
#include <iostream>
using namespace std;
int main()
{
int x, y,z;
cout<<"請輸入第一個數"<<endl;
cin>>x;
cout<<"請輸入第二個數"<<endl;
cin>>y;
cout<<"請輸入第三個數"<<endl;
cin>>z;
if(x>y&&y>z)
{
cout<<z<<"<"<<y<<"<"<<x<<endl;
}
else if(x>z&&z>y)
{
cout<<z<<"<"<<y<<"<"<<x<<endl;
}
else if(z>x&&x>y)
{
cout<<y<<"<"<<x<<"<"<<z<<endl;
}
else if(z>y&&y>x)
{
cout<<x<<"<"<<y<<"<"<<z<<endl;
}
else if(y>x&&x>z)
{
cout<<z<<"<"<<x<<"<"<<y<<endl;
}
else if(y>z&&z>x)
{
cout<<x<<"<"<<z<<"<"<<y<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2011-11-5 13:39
本帖最後由 蔡昀佑 於 2011-11-5 16:32 編輯
#include <iostream>
using namespace std;
int main()
{
int x, s,t;
cout<<"請輸入第一個數"<<endl;
cin>>x;
cout<<"請輸入第二個數"<<endl;
cin>>s;
cout<<"請輸入第三個數"<<endl;
cin>>t;
if(x<s&&x<t)
{
if(s<t)
{
cout<<x<<"<"<<s<<"<"<<t;
}else
{
cout<<x<<"<"<<t<<"<"<<s;
}
}
if(s<x&&s<t)
{
if(x<t)
{
cout<<s<<"<"<<x<<"<"<<t;
} else
{
cout<<s<<"<"<<t<<"<"<<x;
}
}
if(t<s&&t<x)
{
if(x<s)
{
cout<<t<<"<"<<x<<"<"<<s;
} else
{
cout<<t<<"<"<<s<<"<"<<x;
}
}
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2011-11-5 15:37
本帖最後由 劉漢文 於 2011-11-5 16:08 編輯
#include <iostream>
using namespace std;
int main()
{
int x, y,z;
cout<<"請輸入第一個數"<<endl;
cin>>x;
cout<<"請輸入第二個數"<<endl;
cin>>y;
cout<<"請輸入第三個數"<<endl;
cin>>z;
if(x>y && y>z)
{
cout<<z<<"<"<<y<<"<"<<x<<endl;
}
else if(x>z && z>y)
{
cout<<z<<"<"<<y<<"<"<<x<<endl;
}
else if(z>x && x>y)
{
cout<<y<<"<"<<x<<"<"<<z<<endl;
}
else if(z>y && y>x)
{
cout<<x<<"<"<<y<<"<"<<z<<endl;
}
else if(y>x && x>z)
{
cout<<z<<"<"<<x<<"<"<<y<<endl;
}
else if(y>z && z>x)
{
cout<<x<<"<"<<z<<"<"<<y<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t8155745
時間:
2011-11-5 16:15
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cout<<"請輸入第1個數"<<endl;
cin>>a;
cout<<"請輸入第2個數"<<endl;
cin>>b;
cout<<"請輸入第3個數"<<endl;
cin>>c;
if(a<b && a<c)
{
if(b<c)
{
cout<<a<<"<"<<b<<"<"<<c;
}else
{
cout<<a<<"<"<<c<<"<"<<b;
}
}
if(b<a && b<c)
{
if(a>c)
{
cout<<b<<"<"<<a<<"<"<<c;
}else
{
cout<<b<<"<"<<c<<"<"<<a;
}
}
if(c<a && c<b)
{
if(b>a)
{
cout<<c<<"<"<<b<<"<"<<a;
}else
{
cout<<c<<"<"<<a<<"<"<<b;
}
}
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2011-11-5 16:20
#include <iostream>
using namespace std;
int main()
{
int a, b, c;
cout<<"請輸入第一個數"<<endl;
cin>>a;
cout<<"請輸入第二個數"<<endl;
cin>>b;
cout<<"請輸入第三個數"<<endl;
cin>>c;
if(a<b && b<c)
{
cout<<c<<">"<<b<<">"<<a<<endl;
}
else if(a<c && c<b)
{
cout<<b<<">"<<c<<">"<<a<<endl;
}
else if(c<a && a<b)
{
cout<<b<<">"<<a<<">"<<c<<endl;
}
else if(c<b && b<a)
{
cout<<a<<">"<<b<<">"<<c<<endl;
}
else if(b<a && a<c)
{
cout<<c<<">"<<a<<">"<<b<<endl;
}
else if(b<c && c<a)
{
cout<<a<<">"<<c<<">"<<b<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2011-11-5 20:41
#include <iostream>
using namespace std;
int main()
{
int x,y,z;
cout<<"請輸入三個數字電腦會幫您排列數字的大小"<<endl;
cin>>x>>y>>z;
cout<<"你輸入的數字是"<<x<<" "<<y<<" "<<z<<endl;
if(x<y&&y<z)
{
cout<<x<<"<"<<y<<"<"<<z<<endl;
}
else if(x<z && z<y)
{
cout<<x<<"<"<<z<<"<"<<y<<endl;
}
else if(z<x && x<y)
{
cout<<z<<"<"<<x<<"<"<<y<<endl;
}
else if(z<y && y<x)
{
cout<<z<<"<"<<y<<"<"<<x<<endl;
}
else if(y<x && x<z)
{
cout<<y<<"<"<<x<<"<"<<z<<endl;
}
else if(y<z && z<x)
{
cout<<y<<"<"<<z<<"<"<<x<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2