- #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<<"其中兩個數, 或三個數相等!";
- cout<<endl;
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |