標題:
三數比大小 (不考慮兩數或三數相等的情況)
[打印本頁]
作者:
陳品肇
時間:
2019-5-18 09:07
標題:
三數比大小 (不考慮兩數或三數相等的情況)
試設計一個小程式, 讓使用者任意輸入三個數, 接著電腦回應出這三個數的大小順序, 由大而小排列出.
譬如:
當使用者依序輸入5, 12, 3, 電腦會回應 "12>5>3"
當使用者依序輸入7, 2, 11, 電腦會回應 "11>7>2"
當使用者依序輸入7, 7, 11, 電腦會回應 "其中兩個數, 或三個數相等!"
[attach]6495[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,y,z;
cout<<"請任意輸入三個數:";
cin>>x>>y>>z;
if(x>y && y>z)
{
cout<<x<<">"<<y<<">"<<z<<endl; //x>y>z
}else if(x>z && z>y)
{
cout<<x<<">"<<z<<">"<<y<<endl; //x>z>y
}else if(y>z && z>x)
{
cout<<y<<">"<<z<<">"<<x<<endl; //y>z>x
}else if(y>x && x>z)
{
cout<<y<<">"<<x<<">"<<z<<endl; //y>x>z
}else if(z>x && x>y)
{
cout<<z<<">"<<x<<">"<<y<<endl; //z>x>y
}else if(z>y && y>x)
{
cout<<z<<">"<<y<<">"<<x<<endl; //z>y>x
}else
{
cout<<"其中兩個數, 或三個數相等!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
邱楷宸
時間:
2019-5-18 11:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,max;
cout<<"請依序輸入三個數字並按enter:";
cin>>a>>b>>c;
if(a>c && c>b)
{
cout<<a<<">"<<b<<">"<<c<<endl;
}else if(a>b && b>c)
{
cout<<c<<">"<<b<<">"<<b<<endl;
}else if(b>c && c>a)
{
cout<<b<<">"<<c<<">"<<a<<endl;
}else if(c>b && b>a)
{
cout<<c<<">"<<b<<">"<<a<<endl;
}
else if(c>a && a>b)
{
cout<<c<<">"<<b<<">"<<a<<endl;
} else
cout <<"其中兩個數, 或三個數相等!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪子涵
時間:
2019-5-18 11:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,max;
re:
cout<<"請輸入三個數";
cin>>a>>b>>c;
if(a>b&&b>c) //abc
{
cout<<a<<">"<<b<<">"<<c<<endl;
}
else if(a>c&&c>b) //acb
{
cout<<a<<">"<<c<<">"<<b<<endl;
}
else if(b>a&&a>c) //bac
{
cout<<b<<">"<<a<<">"<<c<<endl;
}
else if(b>c&&c>a) //bca
{
cout<<b<<">"<<c<<">"<<a<<endl;
}
else if(c>a&&a>b) //cab
{
cout<<c<<">"<<a<<">"<<b<<endl;
}
else if(c>b&&b>a) //cba
{
cout<<c<<">"<<b<<">"<<a<<endl;
}
else
{
cout<<"其中兩個或三個數相等"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃傳耀
時間:
2019-5-18 11:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,num;
re:
cout<<"請輸入三個數字:";
cin>>a>>b>>c;
if(a==b || b==c || c==a)
{
cout<<"其中兩數或三數相等";
}
else
{
if(a>b)
{
if(c>a)
{
cout<<c<<">"<<a<<">"<<b<<endl;
}
else
{
if(b>c)
{
cout<<a<<">"<<b<<">"<<c<<endl;
}
else
{
cout<<a<<">"<<c<<">"<<b<<endl;
}
}
}
else
{
if(c>b)
{
cout<<c<<">"<<b<<">"<<a<<endl;
}
else
{
if(a>c)
{
cout<<b<<">"<<a<<">"<<c<<endl;
}
else
{
cout<<b<<">"<<c<<">"<<a<<endl;
}
}
}
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
謝蓮金
時間:
2019-5-18 11:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,z;
cout<<"請輸入三個數:";
cin>>x>>y>>z;
if(x>y && y>z)
{
cout<<x<<">"<<y<<">"<<z<<endl;
}else if(x>z && z>y)
{
cout<<x<<">"<<z<<">"<<y<<endl;
}else if(y>z && z>x)
{
cout<<y<<">"<<z<<">"<<x<<endl;
}else if(y>x && x>z)
{
cout<<y<<">"<<x<<">"<<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
{
cout<<"其中兩個數, 或三個數相等!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪藜芸
時間:
2019-5-18 11:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c;
cout<<"請輸入三個數:"<<endl;
cin>>a>>b>>c;
if(a>b && b>c)
{
cout<<a<<">"<<b<<">"<<c<<endl;
}else if(b>a && a>c)
{
cout<<b<<">"<<a<<">"<<c<<endl;
}else if(c>a && a>b)
{
cout<<c<<">"<<a<<">"<<b<<endl;
}else if(a>c && c>b)
{
cout<<a<<">"<<c<<">"<<b<<endl;
}else if(b>c && c>a)
{
cout<<b<<">"<<c<<">"<<a<<endl;
}else if(c>b && b>a)
{
cout<<c<<">"<<b<<">"<<a<<endl;
}else
{
cout<<"其中兩個或三個數相等"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王建葦
時間:
2019-5-25 09:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,z;
{
cout<<"請輸入三個值:";
cin>>x>>y>>z;
if(x>y&&y>z)
{
cout<<x<<">"<<y<<">"<<z;
}
else if(x>z&&z>y)
{
cout<<x<<">"<<z<<">"<<y;
}
else if(y>z&&z>x)
{
cout<<y<<">"<<z<<">"<<x;
}
else if(y>x&&x>z)
{
cout<<y<<">"<<x<<">"<<z;
}
else if(z>x&&x>y)
{
cout<<z<<">"<<x<<">"<<y;
}
else if(z>y&&y>x)
{
cout<<z<<">"<<y<<">"<<x;
}
else
{
cout<<"其中兩個數, 或三個數相等!"<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
李易展
時間:
2019-5-29 20:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c;
cout<<"請任意輸入三個數:";
cin>>a>>b>>c;
if(a>b && b>c)
{
cout<<a<<">"<<b<<">"<<c<<endl;
}else if(a>c && c>b)
{
cout<<a<<">"<<c<<">"<<b<<endl;
}else if(b>c && c>a)
{
cout<<b<<">"<<c<<">"<<a<<endl;
}else if(b>a && a>c)
{
cout<<b<<">"<<a<<">"<<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
{
cout<<"其中兩個數, 或三個數相等!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳宇柏
時間:
2019-6-18 17:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c;
cout<<"請輸入3個整數: ";
cin>>a>>b>>c;
if(a>b && b>c)
cout<<a<<">"<<b<<">"<<c<<endl;
else if(a>c && c>b)
cout<<a<<">"<<c<<">"<<b<<endl;
else if(b>a && a>c)
cout<<b<<">"<<a<<">"<<c<<endl;
else if(b>c && c>a)
cout<<b<<">"<<c<<">"<<a<<endl;
else if(c>a && a>b)
cout<<c<<">"<<a<<">"<<b<<endl;
else if(c>b && b>a)
cout<<c<<">"<<b<<">"<<a<<endl;
else
cout<<"其中兩個數, 或三個數相等!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2