返回列表 發帖

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.     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;
  32. }
複製代碼

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int y;
  8.     cout<<"請輸入x:";
  9.     cin>>x;
  10.     cout<<"請輸入y:";
  11.     cin>>y;
  12.     cout <<"x="<<x<<endl;
  13.     cout <<"y="<<y<<endl;

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

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

TOP

  1. #include <iostream>         //引入輸出.入的指令
  2. #include <cstdlib>          //引入c的標準函式
  3. using namespace std;        //使用標準函式庫命名
  4. int main()                  //程式從"main"執行
  5. {
  6.    int a;
  7.    int b;
  8.    
  9.    cout <<"請輸入a:" << endl;
  10.    cin >>a;
  11.    cout <<"請輸入b:" << endl;
  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.     cout<<"a="<<a<<endl;
  13.     cout<<"b="<<b<<endl;
  14.     if(a>b)
  15.     {
  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.     cout << "請輸入a";
  9.     cin >> a;
  10.     cout << "請輸入b";
  11.     cin >> b;
  12.    
  13.     cout << "a=" << a << endl;
  14.     cout << "b=" << b << endl;
  15.    
  16.     if (a > b)
  17.     {
  18.           cout << "a 大於 b" << endl;
  19.     }   
  20.     else if (a < b)
  21.     {
  22.         cout << "a 小於 b" << endl;
  23.     }
  24.     else
  25.     {
  26.         cout << "a 等於 b" << endl;
  27.     }

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

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.    
  15.     if (a > b)
  16.     {
  17.           cout << "a 大於 b" <<endl;
  18.     }
  19.    
  20.      else if (a = b)
  21.     {
  22.           cout << "a 等於 b" <<endl;
  23.     }
  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.        cout << "請輸入a:";

  9.     cin >> a;

  10.     cout << "請輸入b:";

  11.     cin >> b;

  12.    

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

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

  15.    

  16.     if (a > b)

  17.     {

  18.         cout << "a 大於 b" << endl;

  19.     }

  20.     else if (a < b)

  21.     {

  22.         cout << "a 小於 b" << endl;

  23.     }

  24.     else

  25.     {

  26.         cout << "a 等於 b" << endl;

  27.     }

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

TOP

  1. #include <iostream>             //引入輸出入指令
  2. #include <cstdlib>              //引入c語言標準函數
  3. using namespace std;            //使用標準函式庫命名空間

  4. int main()                      //程式從"main'開始執行
  5. {
  6.     int a;
  7.     int b;
  8.     cout<<"請輸入a;";
  9.     cin >> a;
  10.     cout<<"請輸入b:";
  11.     cin >> b;
  12.    
  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.         
  5. int main()                 
  6. {
  7.     int a;
  8.     int b;
  9.    
  10. cout<<"請輸入a:";   
  11. cin>>a;
  12. cout<<"請輸入b:";  
  13. cin>>b;

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

  16. if (a>b)
  17. {
  18.    cout<<"a大於b";
  19. }
  20. else if(a<b)
  21. {
  22.     cout<<"a小於b";
  23. }
  24. else(a=b)
  25. {
  26.   cout<<"a等於b";
  27. }               
  28. system("pause;");
  29. return 0;
  30. }     
複製代碼

TOP

  1. #include <iostream>             //引入輸出入指令
  2. #include <cstdlib>              //引入c語言標準函數
  3. using namespace std;            //使用標準函式庫命名空間

  4. int main()                      //程式從"main'開始執行
  5. {
  6.     int a;
  7.     int b;
  8.     cout<<"請輸入a;";
  9.     cin >> a;
  10.     cout<<"請輸入b:";
  11.     cin >> b;
  12.    
  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

#include <iostream>

#include <cstdlib>

using namespace std;



int main()

{

    int a;

    int b;

   

    cout << "請輸入a:";

    cin >> a;

    cout << "請輸入b:";

    cin >> b;

   

    cout << "a=" << a << endl;

    cout << "b=" << b << endl;

   

    if (a > b)

    {

        cout << "a 大於 b" << endl;

    }

    else if (a < b)

    {

        cout << "a 小於 b" << endl;

    }

    else

    {

        cout << "a 等於 b" << endl;

    }

   

    system("pause");

    return 0;

}

TOP

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

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>              //引入c語言標準函數
  3. using namespace std;            //使用標準函式庫命名空間

  4. int main()                      //程式從"main'開始執行
  5. {
  6.     int a;
  7.     int b;
  8.     cout<<"請輸入a;";
  9.     cin >> a;
  10.     cout<<"請輸入b:";
  11.     cin >> b;
  12.    
  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

[quote]
[/quote]#include <iostream>
#include <cstdlib>
using namespace std;

int main()
{
int a;
int b;

cout<<"請輸入a:";
cin>> a;
cout<<"請輸入b:";
cin>> b;

cout << "a=" <<a<<endl;
cout << "b=" <<b<<endl;
if (a > b )
{
      cout<<"a大於b"<<endl;
}
else if (a<b)
{
cout<<"a小於b"<< endl;
}
else if (a<b)
{
cout<<"a等於b"<< endl;
}
  system("pause");
    return 0;
    }

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.    
  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 if(a = b)
  24.     {
  25.          cout <<"a = b"<<endl;
  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.    
  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  (a = b)
  26.     {
  27.     cout<<"a 等於 b"<<endl;
  28.     }
  29.    
  30.     system("pause");     
  31.     return 0;            
  32. }
複製代碼

TOP

  1. #include <iostream>                     //引入輸出輸入指令
  2. #include <cstdlib>                     //引入c的語言 的標準函式
  3. using namespace std;                  //用標準函式庫命名空間

  4. int main()                           //程式從"main"開始執行
  5. {
  6.    
  7. int a;
  8. int b;
  9.                                       
  10. cout<<"請輸入a:";
  11. cin>>a;
  12. cout<<"請輸入b:";
  13. cin>>b;

  14.   cout<<"a="<<a<<endl;
  15.   cout<<"b="<<b<<endl;
  16.   if (a > b)

  17.     {

  18.         cout << "a 大於 b" << endl;

  19.     }

  20.     else if (a < b)

  21.     {

  22.         cout << "a 小於 b" << endl;

  23.     }

  24.     else

  25.     {

  26.         cout << "a 等於 b" << endl;
  27.         }

  28.       system("pause");

  29.     return 0;
  30. }
  31.   

複製代碼

TOP

返回列表