返回列表 發帖

if 判斷式

if 判斷式

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     int a;
  7.     int b;
  8.    
  9.     cout<<"請輸入a:";
  10.     cina>>a;
  11.     cout<<"請輸入b:";
  12.     cina>>b;
  13.    
  14.     cout<<"a="<<a<<endl;
  15.     cout<<"b="<<a<<endl;
  16.    
  17.     if(a>b)
  18.     {
  19.            cout<<"a大於b"<<endl;
  20.     }
  21.     else if(a<b)
  22.     {
  23.            cout<<"a小於b"<<endl;
  24.     }
  25.     else
  26.     {
  27.            cout<<"a等於b"<<endl;
  28.     }
  29.    
  30.     system("pause");
  31.     return 0;
  32. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     int b;  
  8.    
  9.     cout<<"請輸入a:";
  10.     cin>>a;
  11.     cout<<"請輸入b:";
  12.     cin>>b;
  13.    
  14.     cout<<"a="<<a<<endl;
  15.     cout<<"b="<<b<<endl;
  16.    
  17.     if(a>b)
  18.     {
  19.         cout<<"a大於b"<<endl;
  20.     }
  21.      else if(a<b)
  22.     {
  23.         cout<<"a小於b"<<endl;
  24.     }
  25.     else
  26.     {
  27.         cout<<"a等於b"<<endl;
  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;
  7.   int b;
  8.   cout<<"輸入a:";
  9.   cin>>a;
  10.   cout<<"輸入b:";
  11.   cin>>b;
  12.   
  13.   cout<<"a="<<a<<endl;
  14.   cout<<"b="<<b<<endl;                                                                                                                                                                                                                              
  15.   
  16.   
  17.   if(a>b)
  18.   {
  19.   cout<<"a大於b"<<endl;
  20.   }
  21.   else if(a<b)
  22.   {
  23.        cout<<"a小於b"<<endl;
  24.   }
  25.   else
  26.   {
  27.       cout<<"a等於b"<<endl;
  28.   }
  29.   


  30.          
  31.                
  32.    



  33. system("pause");
  34. return 0;   
  35.    
  36. }
複製代碼

TOP

  1. system("pause");
  2.     return 0;
  3. }
複製代碼

TOP

[code][/#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int a;
    int b;   
    cout<<"input a";
    cin>>a
    cout<<"input b";
    cin>>b
    cout<<"A="<<a<<endl
    cout<<"B="<<b<<endl
    if{
      cout<<"a大於b"<<endl;               
      }
else if {
      cout<<"a小於b"<<endl                                 
      }
      {
      cout<<"a等於b"<<endl                                                        
      }
    system("pause")
    return 0;
    }
code]

TOP

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.   float a,b;
  7.   cout<<"請輸入a隊分數:";
  8.   cin>>a;
  9.   cout<<"請輸入b隊分數:";
  10.   cin>>b;
  11.   cout<<"a="<<a<<endl;
  12.   cout<<"b="<<b<<endl;
  13.   if(a>b)
  14.   {
  15.    cout<<"a隊獲勝"<<endl;
  16.   }
  17.   else if(a<b)
  18.   {
  19.    cout<<"b隊獲勝"<<endl;
  20.   }
  21.   else
  22.   {
  23.    cout<<"平手"<<endl;
  24.   }  
  25.   
  26.    
  27.    
  28.    
  29.    
  30.     system("pause");
  31.     return 0;
  32. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6. int a;
  7. int b;

  8. cout<<"請輸入a:";
  9. cin>>a;
  10. cout<<"請輸入b:";
  11. cin>>b;

  12. cout<<"a="<<a<<endl;
  13. cout<<"b="<<b<<endl;

  14. if(a>b)
  15. {
  16.        cout<<"a 大於 b"<<endl;
  17.        }
  18. else if (a<b)
  19. {
  20.      cout<<"a小於b"<<endl;
  21.      }
  22.      else
  23.      {
  24.          cout<<"a 等於 b"<<endl;
  25.          }
  26.          




  27. system("pause");
  28. return 0;
  29. }
複製代碼

TOP

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6. int a;
  7. int b;

  8. cout<<"請輸入a:";
  9. cin>>a;
  10. cout<<"請輸入b";
  11. cin>>b;

  12. cout<<"a="<<a<<endl;
  13. cout<<"b="<<b<<endl;

  14. if(a>b)
  15. {
  16.          cout<<"a大於b"<<endl;
  17.          }
  18. else if(a<b)
  19. {
  20.    cout<<"a小於b"<<endl;   
  21. }
  22. else
  23. {
  24.     cout<<"a等於b"<<endl;   
  25. }


  26.          
  27. system("pause");
  28. return 0;
複製代碼

TOP

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

TOP

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

TOP

  1. #include<iostream>

  2. #include<cstdlib>

  3. using namespace std;

  4. int main()

  5. {
  6.     int a;
  7.     int b;
  8.    
  9.     cout<<"請輸入a:";
  10.     cin>>a;
  11.     cout<<"請輸入b:";
  12.     cin>>b;

  13.     cout<<"a="<<a<<endl;
  14.     cout<<"b="<<b<<endl;

  15.     if(a>b)

  16.     {
  17.         cout<<"a 大於 b"<<endl;   
  18.     }
  19.     else if(a<b)
  20.     {
  21.          cout<<"a小於b"<<endl;
  22.     }   
  23.     else
  24.     {     
  25.         cout<<"a 等於 b"<<endl;
  26.     }

  27.     system("pause");
  28.     return 0;

  29. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     int a;
  7.     int b;
  8.    
  9.     cout<<"請輸入a:";
  10.     cin>>a;
  11.     cout<<"請輸入b:";
  12.     cin>>b;
  13.    
  14.    
  15.     cout<<"a="<<a<<endl;
  16.     cout<<"b="<<b<<endl;
  17.    
  18.    
  19.     if(a>b)
  20.       {
  21.            cout<<"a大於b"<<endl;
  22.       }
  23.        else if (a<b)
  24.            cout<<"a小於b"<<endl;
  25.       {
  26.        else
  27.            cout<<"a等於b"<<endl;
  28.       }

  29. system("pause");
  30. return 0;
  31. }
複製代碼

TOP

返回列表