返回列表 發帖

if...else 判斷式

本帖最後由 鄭繼威 於 2022-8-13 15:05 編輯

雙向判斷式語法
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. int s;
  7. cout<<"請輸入分數";
  8. cin>>s;

  9. if(s>=60)
  10.     cout<<"恭喜你及格";
  11. else
  12.     cout<<"恭喜你不及格";
  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.        cout<<"恭喜你及格了!"<<endl;
  11.     }
  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==100)
  10.         cout<<"你要看滿分多少"<<endl;
  11.     else if(score<100)
  12.         cout<<"喔"<<endl;
  13.     else if(score<60)
  14.         cout<<"嗯"<<endl;
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

TOP

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

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.     eise
  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.     int score;
  6.     cout<<"請輸入你的成績: ";
  7.     cin>>score;
  8.     if(score>=60)
  9.         cout<<"及格"<<endl;
  10.     else
  11.         cout<<"不及格"<<endl;

  12.    
  13.      
  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==100)
  10.         cout<<"你要看滿分多少"<<endl;
  11.     else if(score<100 && score>=60)
  12.         cout<<"喔"<<endl;
  13.     else if(score<60 && score>0)
  14.         cout<<"嗯"<<endl;
  15.     else if(score==0)
  16.         cout<<"聰明"<<endl;
  17.     else
  18.         cout<<"真神奇"<<endl;
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼

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.        int score;
  6.        cout<<"請打出你的成績: ";
  7.         cin>>score;
  8.     if(score>=60)
  9.         cout<<"哇塞!你及格了!"<<endl;
  10.     else
  11.         cout<<"恭喜你 不及格!"<<endl;
  12.         system("pause");
  13.         return 0;
  14. }
複製代碼

TOP

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

TOP

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

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

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.     int score;
  7.     cout<<"你的成績: ";
  8.     cin>>score;
  9.     if(score>=60){
  10.         cout<<"恭喜及格"<<endl;
  11. }
  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==100) //在判斷兩邊的值是否相等,要用雙等號
  10.         cout<<"哇!滿分!"<<endl;
  11.     else if(score<100 && score>=60)
  12.         cout<<"恭喜你及格了,給你糖吃!"<<endl;
  13.     else if(score<60 && score>0)
  14.         cout<<"不及格!打屁股!"<<endl;
  15.     else if(score==0)
  16.         cout<<"零分?斬!"<<endl;
  17.     else
  18.         cout<<"輸入錯誤!斬!"<<endl;
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼

TOP

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

TOP

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

TOP

返回列表