返回列表 發帖

if...else 判斷式

雙向判斷式語法
if (條件式或布林值){
   程式區塊一;
}
else{
   程式區塊二;
}


  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     //你要做的事
  7.     int score; //變數名稱與要做的事有一定程度的相關
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>score;
  10.     if(score>=60)
  11.         cout<<"恭喜你及格了,給你糖吃!"<<endl;
  12.     else
  13.         cout<<"不及格!打屁股!"<<endl;

  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼
[小補充]if的條件那邊是可以放布林值的

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.    
  7.     int score;
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>score;
  10.     if(score>=60)
  11.         cout<<"你及格了!"<<endl;
  12.     else
  13.         cout<<"你不及格!"<<endl;

  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;

  4. int main()
  5. {
  6.     int grade;
  7.     bool run=true;
  8.    
  9.     while(run){
  10.         cout<<"輸入成績:";
  11.         cin>>grade;
  12.         if(grade>=60){
  13.              cout<<"及格"<<endl;
  14.         }
  15.         else{
  16.              cout<<"不及格"<<endl;
  17.              break;
  18.         }
  19.     }
  20.     system("pause");
  21.     return 0;
  22. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int score;
  6. cout<<"enter your score: ";
  7. cin>>score;

  8.    if(score>=60){
  9.    cout<<"good job"<<endl;
  10. }
  11.    else {
  12.      cout<<"mission failed, try harder next time"<<endl;
  13. }

  14. system("pause");
  15. return 0;
  16. }
複製代碼

TOP

本帖最後由 呂得銓 於 2022-12-9 20:46 編輯
  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.     cout<<"ok"<<endl;
  11. }
  12.     else{
  13.          cout<<"no"<<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.    
  7.     int score;
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>score;
  10.     if(score>=60)
  11.         cout<<"你及格了!"<<endl;
  12.     else
  13.         cout<<"你不及格!"<<endl;

  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

本帖最後由 盧玄皓 於 2022-12-9 20:46 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.    
  7.     int score;
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>score;
  10.     if(score>=60)
  11.         cout<<"你及格了!"<<endl;
  12.     else
  13.         cout<<"不及格!"<<endl;

  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

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

TOP

7

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.    
  7.     int x;
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>x;
  10.     if(x>=60)
  11.         cout<<"及格"<<endl;
  12.     else
  13.         cout<<"不及格"<<endl;

  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"請輸入你的成績";
  8.     cin>>a;
  9.     if (a==100){
  10.     cout<<"成績還不成績很好!可以了"<<endl;}
  11.      else if(a>=60){
  12.     cout<<"還可以,及格了"<<endl;}
  13.     else if(a>=1){
  14.     cout<<"不行!給我多寫幾本評量!"<<endl;}
  15.     else if(a==0){
  16.     cout<<"你敢考零分?"<<endl;}
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

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.         cout<<"恭喜你及格了,讚喔!"<<endl;
  11.         else
  12.         cout<<"不及格,再加油!"<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     //你要做的事
  7.     int score; //變數名稱與要做的事有一定程度的相關
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>score;
  10.     if(score>=60)
  11.         cout<<"恭喜你及格了,給你糖吃!"<<endl;
  12.     else
  13.         cout<<"不及格!打屁股!"<<endl;

  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"Please type in your score...";
  8.     cin>>a;
  9.     if (a==100){
  10.     cout<<"Nice! Congrats on your full score."<<endl;}
  11.     else if(a>=60 && a<=100){
  12.     cout<<"Better luck next time!"<<endl;}
  13.     else if(a>=1 && a<=60){
  14.     cout<<"Try harder, you'll get there soon!"<<endl;}
  15.     else if(a==0){
  16.     cout<<"Bro are you okay?"<<endl;}
  17.     else {
  18.     cout<<"I sure hope you aren't drunk!"<<endl;}
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼
Attention Seeker </3

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.         cout<<"及格了"<<endl;
  11.     else
  12.         cout<<"不及格"<<endl;

  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

TOP

返回列表