- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a,b,c;
- cout<<"請輸入第一個數:";
- cin>>a;
- cout<<"請輸入第二個數:";
- cin>>b;
- cout<<"請輸入第三個數:";
- cin>>c;
- if (a>b && b>c)
- {
- cout<<a<<">"<<b<<">"<<c<<endl;
- }else if (a>c && c>b)
- {
- cout<<a<<">"<<c<<">"<<b<<endl;
- }else if (a>b && b>c)
- {
- cout<<a<<">"<<b<<">"<<c<<endl;
- }else if (b>c && b>a)
- {
- cout<<b<<">"<<c<<">"<<a<<endl;
- }else if (c>a && b>c)
- {
- cout<<a<<">"<<b<<">"<<c<<endl;
- }else if (a>b && 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;
-
- }
複製代碼 |