- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int i ,x,z;
- re:
- cout<<"請輸入數字:;
- cin>>i>>x>>z;
- if(i>x && x>z)
- {
- cout<<i<<">"<<x<<"<"<<z<<endl;
- }
- else if(i>z && z>x)
- {
- cout<<i<<">"<<z<<">"<<x<<endl;
- }
- else if(z>x && x>i)
- {
- cout<<z<<">"<<x<<">"<<i<<endl;
- }
- else if(z<i&& i>x)
- {
- cout<<z<<">"<<i<<">"<<x<<endl;
- }
- else if(x>i && i>z)
- {
- cout<<x<<">"<<i<<">"<<z<<endl;
- }
- else if(x>z && z>i)
- {
- cout<<x<<">"<<z<<">"<<i<<endl;
- }
- else
- {
- cout<<"數字重複!!"<<endl;
- }
- cout<<endl;
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |