標題:
三數比大小 (由大而小排列出)
[打印本頁]
作者:
tonyh
時間:
2011-10-29 17:00
標題:
三數比大小 (由大而小排列出)
本帖最後由 tonyh 於 2011-10-29 17:53 編輯
試設計一個小程式, 讓使用者任意輸入三個大小不同的數, 接著電腦回應出這三個數的大小順序, 由大而小排列出.
譬如:
當使用者依序輸入5, 12, 3, 電腦會回應 12>5>3
當使用者依序輸入7, 2, 11, 電腦會回應 11>7>2
本帖隱藏的內容需要回復才可以瀏覽
作者:
t3742238
時間:
2011-10-29 17:13
#include <iostream>
using namespace std;
int main()
{
int x;
int y;
int z;
cout<<"請輸入三個數字電腦會幫您排列數字的大小"<<endl;
cout<<"請輸入第一個數"<<endl;
cin>>x;
cout<<"請輸入第二個數"<<endl;
cin>>y;
cout<<"請輸入第三個數"<<endl;
cin>>z;
if(x>y&&y>z)
{
cout<<x<<">"<<y<<">"<<z<<endl;
}
else if(x>z&&z>y)
{
cout<<x<<">"<<y<<">"<<z<<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;
}
複製代碼
作者:
劉漢文
時間:
2011-10-29 17:15
#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<<x<<">"<<y<<">"<<z<<endl;
}
else if(x>z && z>y)
{
cout<<x<<">"<<y<<">"<<z<<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;
}
複製代碼
作者:
許逸瑋
時間:
2011-10-29 17:27
#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&&a>c)
{
cout<<a<<">"<<b<<">"<<c<<endl;
}
else if(a>c&&c>b)
{
cout<<a<<">"<<b<<">"<<c<<endl;
}
else if(c>a&&a>b)
{
cout<<c<<">"<<a<<">"<<b<<endl;
}
else if(c>b&&b>a)
{
cout<<c<<">"<<b<<">"<<a<<endl;
}
else if(b>a&&a>c)
{
cout<<b<<">"<<a<<">"<<c<<endl;
}
else if(b>c&&c>a)
{
cout<<b<<">"<<c<<">"<<a<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t8155745
時間:
2011-10-29 17:32
#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-10-29 17:38
#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(a>b)
{
cout<<c<<">"<<a<<">"<<b;
}else
{
cout<<c<<">"<<b<<">"<<a;
}
}
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2011-11-5 20:36
#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