返回列表 發帖

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

本帖最後由 tonyh 於 2016-7-11 10:17 編輯

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

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

TOP

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

TOP

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

TOP

本帖最後由 蕭澧邦 於 2016-7-11 10:34 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     int b;
  8.     cout << "請輸入變數1的值:";
  9.     cin >> a;
  10.     cout << "請輸入變數2的值:";
  11.     cin >> b;
  12.     cout << "1號變數的值為:" << a << endl;
  13.     cout << "2號變數的值為:" << b << endl;
  14.     if (a > b)
  15.     {
  16.           cout << "1號變數 大於 2號變數" << endl;
  17.     }
  18.     else if  (a < b)
  19.     {
  20.           cout << "1號變數 小於 2號變數" << endl;
  21.     }
  22.     else
  23.     {
  24.           cout << "1號變數 等於 2號變數" << endl;
  25. }
  26.     system("pause");
  27.     return 0 ;
  28. }  
複製代碼

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

TOP

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

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

TOP

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

TOP

返回列表