返回列表 發帖

if...else 判斷式

本帖最後由 tonyh 於 2016-8-3 16:12 編輯

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

  1. {
  2.     int score;
  3.     cout<<"請輸入你的成績: ";
  4.     cin>>score;
  5.     if(score>=60)
  6.     {
  7.     cout<<"Ya!!you are save"<<endl;
  8. }else
  9. {
  10.      cout<<"you will die"<<endl;
  11.      }   
  12.     system("pause");
  13.    return 0;   
  14. }
複製代碼

TOP

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b;
  7.     cout<<"請輸入你的成績:";
  8.     cin>>a;
  9.     if(a>=60)
  10.     {
  11.         cout<<"你及格了!厲害!"<<endl;
  12.     }else
  13.     {
  14.         cout<<"混!連60分也達不到!"<<endl;  
  15.     }   
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

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

TOP

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

TOP

本帖最後由 黃謙儒 於 2016-8-3 16:06 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"請輸入你的成績: ";
  8.     cin>> score;
  9.     if(score>=60)
  10.     {
  11.     cout<<"恭喜你!!"<<endl;         
  12.     }else
  13.     {
  14.     cout<<"殺了你!!"<<endl;     
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }     
複製代碼

TOP

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

TOP

  1. #include<iostream>

  2. #include<cstdlib>

  3. using namespace std;

  4. int main()

  5. {

  6.     int score

  7.     cout<<"請輸入你的成績: ";

  8.     cin>> score;

  9.     if(score>=60)

  10.     {

  11.     cout<<"恭喜你!!"<<endl;         

  12.     }else

  13.     {

  14.     cout<<"殺了你!!"<<endl;     

  15.     }

  16.     system("pause");

  17.     return 0;

  18. }     
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"請輸入你的成績:";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.     cout<<"大大,恭喜及格"<<endl;            
  12.     }else
  13.     {
  14.     cout<<"孩子,未來的路漫長艱辛的很,加油吧!"<<endl;
  15.     }
  16.    system("pause");
  17.    return 0;
  18. }   
複製代碼

TOP

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

TOP

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

TOP

  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+y="<<x+y<<endl;
  12.     cout<<"x-y="<<x-y<<endl;
  13.     cout<<"x*y="<<x*y<<endl;
  14.     cout<<"x/y="<<x/y<<endl;
  15.     cout<<"x%y="<<x%y<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

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

  4. int main()
  5. {
  6.     int  score;
  7.     cout<<"請輸入你的成績: ";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.      cout<<"恭喜你,及格了"<<endl;
  12.     }else
  13.     {  
  14.      cout<<"不及格~斬"<<endl;   
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }   
複製代碼

TOP

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

TOP

返回列表