標題:
三數比大小 (不考慮兩數或三數相等的情況)
[打印本頁]
作者:
方浩葦
時間:
2024-6-22 06:48
標題:
三數比大小 (不考慮兩數或三數相等的情況)
試設計一個小程式, 讓使用者任意輸入三個數, 接著電腦回應出這三個數的大小順序, 由大而小排列出.
譬如:
當使用者依序輸入5, 12, 3, 電腦會回應 "12>5>3"
當使用者依序輸入7, 2, 11, 電腦會回應 "11>7>2"
當使用者依序輸入7, 7, 11, 電腦會回應 "其中兩個數, 或三個數相等!"
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, c;
re:
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>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;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林少謙
時間:
2024-6-22 15:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,y,z;
cout<<"請輸入3個數字:";
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;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
李偈睿
時間:
2024-6-22 15:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c;
re:
cout<<"請輸入任意三個數: ";
cin>>a>>b>>c;
if(a>b && b>c)
cout<<a<<">"<<b<<"<"<<c;
else if (a>c && c>b)
cout<<a<<">"<<c<<"<"<<b;
else if (b>a && a>c)
cout<<b<<">"<<a<<"<"<<c;
else if (b>c && c>a)
cout<<b<<">"<<c<<"<"<<a;
else if (c>a && a>b)
cout<<c<<">"<<a<<"<"<<b;
else if (c>b && b>a)
cout<<c<<">"<<b<<"<"<<a;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
李唯銘
時間:
2024-6-29 14:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, c;
re:
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>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 && c>a){
cout<<c<<">"<<b<<">"<<a<<endl;
}
else
cout<<"有數字相等"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
高湘庭
時間:
2024-6-29 14:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int x,y,z;
re:
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;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-6-29 14:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int a,b,c;
cout<<"請依序輸入三個數:"<<endl;
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;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2