返回列表 發帖

if...else 判斷式

本帖最後由 tonyh 於 2017-2-7 11:49 編輯

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.     int score;
  7.    
  8.     cout<<"報上你的成績: ";
  9.     cin>>score;
  10.    
  11.     if(score>=60)
  12.     {
  13.         cout<<"恭喜你!及格了!"<<endl;
  14.     }else
  15.     {
  16.         cout<<"不及格... 斬!"<<endl;
  17.     }
  18.    
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.    
  8.     cout<<"報上你的成績: ";
  9.     cin>>score;
  10.    
  11.     if(score>60)
  12.     {
  13.          cout<<"及格"<<endl;
  14.     }else
  15.     {
  16.         cout<<"弱"<<endl;
  17.     }   
  18.     system("pause");
  19.     return 0;   
  20. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int score;
  7.    
  8.    cout<<"報上你的成績";
  9.    cin>>score;
  10.    
  11.    if(score>=60)
  12.    {
  13.                 cout<<"你及格了"<<endl;
  14.    }else
  15.    {
  16.          cout<<"不及格..." <<endl;
  17.    }
  18.    system("pause");
  19.    return 0;
  20. }   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"報上你的成績:"
  8.     intcore;
  9.     if(score>=60)
  10. }
  11.      cout<<"及格!"<<endl;
  12.      }else
  13.      {
  14.       cout<<"不及格<<endl;
  15.       }
  16.         system("pause");
  17.       return 0;
  18.             
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       int score;
  7.       
  8.       cout<<"報上你的成績";
  9.       cin>>score;
  10.       
  11.       if(score>60)
  12. {
  13.       cout<<"你及格了!"<<endl;
  14. }else
  15. {
  16.      cout<<"不及格...去死吧!";      
  17. }
  18.       system("pause");
  19.       return 0;
  20. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    for(int i=1; i>0; i++)
  7.    {
  8.     int x=0,y=0;
  9.    
  10.    
  11.    cout<<"請輸入X"<<endl;
  12.    cin>>x;
  13.    cout<<"請輸入Y"<<endl;
  14.    cin>>y;
  15.     cout<<"X+Y="<<x+y<<endl;
  16.     cout<<"X-Y="<<x-y<<endl;
  17.     cout<<"X*Y="<<x*y<<endl;
  18.     cout<<"X/Y="<<x/y<<endl;
  19.     cout<<"X%Y="<<x%y<<endl<<endl;
  20.     if(x>y)
  21.     {
  22.                  cout<<"X>Y"<<endl;  
  23.     }
  24.          else if(x<y)
  25.     {
  26.                  cout<<"X<Y"<<endl;
  27.     }
  28.          if(x=y)
  29.     {
  30.                  cout<<"X=Y"<<endl;
  31.     }
  32.     system("pause");
  33.     system("cls");
  34. }
  35.     system("pause");
  36.     return 0;
  37. }
複製代碼

TOP

返回列表