標題:
三數比大小 (不考慮兩數或三數相等的情況)
[打印本頁]
作者:
陳品肇
時間:
2018-12-7 22:53
標題:
三數比大小 (不考慮兩數或三數相等的情況)
試設計一個小程式, 讓使用者任意輸入三個數, 接著電腦回應出這三個數的大小順序, 由大而小排列出.
譬如:
當使用者依序輸入5, 12, 3, 電腦會回應 "12>5>3"
當使用者依序輸入7, 2, 11, 電腦會回應 "11>7>2"
當使用者依序輸入7, 7, 11, 電腦會回應 "其中兩個數, 或三個數相等!"
[attach]5448[/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;
}
複製代碼
作者:
趙一鳴
時間:
2018-12-8 14:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c;
cout<<"\n請依序輸入三個數: ";
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<<"其中兩個數, 或三個數相等!\n";
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
章幼莛
時間:
2018-12-8 14:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
start:
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<<"其中有2個數,或3個數相等~"<<endl;
}
goto start;
system("pause");
return 0;
}
複製代碼
回復
1#
陳品肇
作者:
吳孟書
時間:
2018-12-8 14:32
#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;
}
複製代碼
作者:
吳孟修
時間:
2018-12-8 14:36
#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;
}
else if(x>z && z>y)
{
cout<<x<<">"<<z<<">"<<y<<endl;
}
else if(y>x && x>z)
{
cout<<y<<">"<<x<<">"<<z<<endl;
}
else if(y>z && z>x)
{
cout<<y<<">"<<z<<">"<<x<<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;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2018-12-8 14:41
#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;
}else if(x>z && z>y)
{
cout<<x<<">"<<z<<">"<<y;
}else if(y>x && x>z)
{
cout<<y<<">"<<x<<">"<<z;
}else if(y>z && z>x)
{
cout<<y<<">"<<z<<">"<<x;
}else if(z>x && x>y)
{
cout<<z<<">"<<x<<">"<<y;
}else if(z>y && y>x)
{
cout<<z<<">"<<y<<">"<<x;
}else
{
cout<<"其中兩個數, 或三個數相等!";
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
曲書辰
時間:
2018-12-8 14:47
#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 if(x=y>z)
{
cout<<"x=y>z"<<endl;
}else if(x=z && z>y)
{
cout<<"x=z>y"<<endl;
}else if(z=y && y>x)
{
cout<<"z=y>x"<<endl;
}
else
{
cout<<"x=y=z"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2018-12-8 14:53
本帖最後由 洪寬瀧 於 2018-12-8 14:54 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
jeb:
int j,e,b;
cout<<"請任意輸入三個數:";
cin>>j>>e>>b;
if(j>e && e>b)
{
cout<<j<<">"<<e<<">"<<b<<endl;
}else if(e>b && b>j)
{
cout<<e<<">"<<b<<">"<<j<<endl;
}else if(b>j && j>e)
{
cout<<b<<">"<<j<<">"<<e<<endl;
}else if(b>e && e>j)
{
cout<<b<<">"<<e<<">"<<j<<endl;
}else if(j>b && b>e)
{
cout<<j<<">"<<b<<">"<<e<<endl;
}else if(e>j && j>b)
{
cout<<e<<">"<<j<<">"<<b<<endl;
}else cout<<"其中兩個數, 或三個數相等!!!!!!!!"<<endl;
goto jeb; //gpf 66hbnfbgdvvvvvdfvaesvasvvds
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
jeb:
int j,e,b;
cout<<"請任意輸入三個數:";
cin>>j>>e>>b;
if(j>e && e>b)
{
cout<<j<<">"<<e<<">"<<b<<endl;
}else if(e>b && b>j)
{
cout<<e<<">"<<b<<">"<<j<<endl;
}else if(b>j && j>e)
{
cout<<b<<">"<<j<<">"<<e<<endl;
}else if(b>e && e>j)
{
cout<<b<<">"<<e<<">"<<j<<endl;
}else if(j>b && b>e)
{
cout<<j<<">"<<b<<">"<<e<<endl;
}else if(e>j && j>b)
{
cout<<e<<">"<<j<<">"<<b<<endl;
}else cout<<"其中兩個數, 或三個數相等!!!!!!!!"<<endl;
goto jeb; //gpf 66hbnfbgdvvvvvdfvaesvasvvds
system("pause");
return 0;
}
作者:
周孫印
時間:
2018-12-15 12:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c;
cout<<"\n請依序輸入三個數: ";
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<<"其中兩個數, 或三個數相等!\n";
}
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2