- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main(){
- int a,b,c;
- cout<<"輸入a:";
- cin>>a;
- cout<<"輸入b:";
- cin>>b;
- cout<<"輸入c:";
- cin>>c;
- if(a>b and b>c){
- cout<<"a>b>c"<<endl;
- }
- else if(a>c and c>b){
- cout<<"a>c>b"<<endl;
- }
- else if(b>a and a>c){
- cout<<"b>a>c"<<endl;
- }
- else if(b>c and c>a){
- cout<<"b>c>a"<<endl;
- }
- else if(c>b and b>a){
- cout<<"c>b>a"<<endl;
- }
- else if(c>a and a>b ){
- cout<<"c>a>b"<<endl;
- }
- else
- cout<<"兩數或三數相等"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |