Board logo

標題: if...else if...else 判斷式 [打印本頁]

作者: 陳品肇    時間: 2018-8-2 00:23     標題: if...else if...else 判斷式

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

作者: 傅臣嘉    時間: 2018-8-2 10:30

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

  4. int main()
  5. {
  6.     int a,b;
  7.    
  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.     system("pause");
  30.     return 0;
  31. }
複製代碼

作者: 邱泰澄    時間: 2018-8-2 10:32

  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.     cout<<"x="<<x<<endl;
  12.     cout<<"y="<<y<<endl;
  13.    
  14.     if(x>y)
  15.     {
  16.         cout<<"x>y"<<endl;
  17.     }else if(x<y)
  18.     {
  19.         cout<<"x<y"<<endl;  
  20.     }else
  21.     {
  22.         cout<<"x=y"<<endl;
  23.     }
  24.     system("pause");
  25.     return 0;   
  26. }
複製代碼

作者: 蔡睿紘    時間: 2018-8-2 10:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int ss;
  7.     cout<<"你的成績?"<<"A:";
  8.     cin>>ss;
  9.     cout<<ss;
  10.     if(ss>=95)
  11.     {
  12.         cout<<"高材生!! ";
  13.         }
  14.         else if(ss>=60)
  15.         {
  16.              cout<<"及格 ";}
  17.         else
  18.         {
  19.              cout<< "不及格 " ;      
  20.              }
  21.              system("pause");
  22.              return 0;
  23.     }
複製代碼

作者: 湯郡一    時間: 2018-8-2 10:35

本帖最後由 湯郡一 於 2018-8-2 10:37 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b;
  7.     cout<<"請輸入a"<<endl;
  8.     cin>>a;
  9.     cout<<"請輸入b"<<endl;
  10.     cin>>b;
  11.     cout<<"a="<<a<<endl;
  12.     cout<<"b="<<b<<endl;
  13.    
  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";
  25.     }
  26.        cout<<endl;
  27.        system("pause");
  28.        return 0;            
  29. }
複製代碼

作者: 曾彥鈞    時間: 2018-8-2 10:40

  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.     cout<<"a="<<a<<endl;
  12.        cout<<"b="<<b<<endl;
  13.     if(a>b)
  14.     {
  15.         cout<<"a>b" <<endl ;      
  16.    
  17.                  
  18.     }  
  19.     else if(a<b)
  20.     {
  21.         cout<<"a<b"<<endl;
  22. }     
  23.         else
  24.         {
  25.             cout<<"a=b"<<endl;
  26.             }      
  27.                  
  28.                  cout<<endl;   
  29.                  system("pause");
  30.                  return  0;            
  31.     }
複製代碼

作者: 黃資尹    時間: 2018-8-2 10:42

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

  4. int main()
  5. {
  6.     int a,b;
  7.    
  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.      system("pause");
  30.      return 0;
  31. }
複製代碼

作者: 曾宥承    時間: 2018-8-2 10:43

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

  4. int main()
  5. {
  6.     int a,b;
  7.    
  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. }
複製代碼

作者: 陳潔歆    時間: 2018-8-2 10:43

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

作者: 田宇任    時間: 2018-8-2 10:43

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





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2