返回列表 發帖

if...else if...else 判斷式

本帖最後由 tonyh 於 2016-1-23 09:48 編輯

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b;
  7.     cout<<"請輸入a: ";
  8.     cin>>a;
  9.     cout<<"請輸入b: ";
  10.     cin>>b;
  11.     if(a>b)
  12.     {
  13.         cout<<"a>b";
  14.     }else if(a<b)
  15.     {
  16.         cout<<"a<b";  
  17.     }else
  18.     {
  19.         cout<<"a=b";
  20.     }
  21.     cout<<endl;
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b;
  7.     cout<<"請輸入a:";
  8.     cin>>a;
  9.     cout<<"請輸入b:";
  10.     cin>>b;
  11.     if(a>b)
  12.     {
  13.         cout<<"a>b"<< endl;      
  14.     }
  15.     else if(a<b)
  16.     {
  17.         cout<<"a<b"<< endl;      
  18.     }
  19.     else
  20.     {
  21.         cout<<"a=b"<< endl;      
  22.     }
  23.     system("pause");
  24.     return 0;   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b;
  7.     cout<<"please enter a:";
  8.     cin>>a;
  9.     cout<<"please enter b:";
  10.     cin>>b;
  11.    
  12.    
  13.     if(a>b)
  14.     {
  15.            cout<<"a>b"<<endl;
  16.     }else if(a<b)
  17.     {
  18.           cout<<"a<b"<<endl;
  19.     }else
  20.     {
  21.          cout<<"a=b"<<endl;
  22.     }
  23.     cout<<endl;
  24.     system("pause");
  25. }      
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b;
  7.     cout<<"請輸入a:";
  8.     cin>>a;
  9.     cout<<"請輸入b:";
  10.     cin>>b;
  11.     if(a>b)
  12.     {
  13.         cout<<"a>b";   
  14.     }else if(a<b)
  15.     {
  16.         cout<<"a<b";     
  17.     }else
  18.     {
  19.         cout<<"a=b";   
  20.     }
  21.     cout<<endl;
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b;
  7.     cout<<"請輸入a:";
  8.     cin>>a;
  9.     cout<<"請輸入b:";
  10.     cin>>b;
  11.     if(a>b)
  12.     {
  13.            cout<<"a>b";
  14.     }else if(a<b)
  15.     {
  16.           cout<<"a<b";
  17.     }else if(a=b)
  18.     {      
  19.            cout<<"a=b";
  20.     }      
  21.     cout<<endl;
  22.     system("pause");
  23.     return 0;
  24. }   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.    int a,b;
  7.    cout<<"請輸入a:";
  8.    cin>>a;
  9.    cout<<"請輸入b:";
  10.    cin>>b;
  11.    if(a>b)
  12.    {
  13.         cout<<"a>b";
  14.    }else if(a<b)
  15.    {
  16.          cout<<"a<b";
  17.    }else
  18.    {
  19.         cout<<"a=b";
  20.    }
  21.    cout<<endl;
  22.    system("pause");
  23.    return 0;
  24. }            
  25.    
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int b,c;
  7.    
  8.     cout<<"輸入b:";
  9.     cin>>b;
  10.     cout<<"輸入c:";
  11.     cin>>c;
  12.     cout<<"b="<<b<<endl;
  13.     cout<<"c="<<c<<endl;
  14.     if(b>c)
  15.     {
  16.           cout<<"b大於c"<<endl;
  17.            
  18.     }
  19.     else if(b<c)
  20.     {
  21.           cout<<"b小於c"<<endl;
  22.            
  23.     }
  24.     else
  25.     {
  26.           cout<<"b等於c"<<endl;
  27.            
  28.     }
  29.     system("pause");
  30.     return 0;
  31. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b;
  7.     cout<<"請輸入a:";
  8.     cin>>a;
  9.     cout<<"請輸入b:";
  10.     if(a>b)
  11. {
  12.     cout<<"a>b";
  13. }else if(a<b)
  14. {
  15.     cout<<"a<b"
  16. }else
  17. {
  18.      cout<<"a=b"
  19. }
  20.     cout<<endl;
  21.     system("pause")
  22.     return 0;                     
  23. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b;
  7.     cout<<"please enter a:";
  8.     cin>>a;
  9.     cout<<"please enter b:";
  10.     cin>>b;
  11.    
  12.    
  13.     if(a>b)
  14.     {
  15.            cout<<"a>b"<<endl;
  16.     }else if(a<b)
  17.     {
  18.           cout<<"a<b"<<endl;
  19.     }else
  20.     {
  21.          cout<<"a=b"<<endl;
  22.     }
  23.     cout<<endl;
  24.     system("pause");
  25. }         
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b;
  7.     cout<<"請輸入a:";
  8.     cin>>a;
  9.     cout<<"請輸入b:";
  10.     cin>>b;
  11.     if(a>b)
  12.     {
  13.      cout<<"a>b";
  14.     }else if(a<b)
  15.     {
  16.      cout<<"a<b";
  17.     }else
  18.     {
  19.      cout<<"a=b"<<endl;
  20.     }
  21.     system("pause");
  22.     return 0;
  23. }
複製代碼

TOP

返回列表