返回列表 發帖

if...else 判斷式

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

雙向判斷式語法
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. #incude<iostr>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {2
  6.      int score;
  7.    re:
  8.    cout<<"請輸入你的成績:";
  9.    cin>>score;
  10.     if(score>=60)
  11.     cout<<"恭喜你及格了,給你糖吃!"<<endl;
  12.      else
  13.     cout<<"不及格!打屁股!"<<endl;
  14.     goto re;
  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>59)
  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.     //1.宣告變數
  6.     int score;
  7.     //2.輸出請使用者輸入成績
  8.     cout<<"請輸入你的成績:";
  9.     //3.取得使用者輸入的成績
  10.     cin>>score;
  11.     //4.開始判斷(if-else)
  12.     //ex:60分以上都可以買東西
  13.     if(score>=60){                        
  14.          cout<<"恭喜你及格了,給你糖吃!"<<endl;              
  15.     }
  16.     else{
  17.          cout<<"不及格!打屁股!"<<endl;      
  18.     }

  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

TOP

本帖最後由 李睿宸 於 2022-4-19 20:24 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

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

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

本帖最後由 齊振睿 於 2022-4-6 21:17 編輯
  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

本帖最後由 陳牧謙 於 2022-4-19 16:58 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){

  5.    int score;
  6.    re:
  7.    cout<<"請輸入你的成績:";
  8.    cin>>score;
  9.     if(score>=60)
  10.     cout<<"恭喜你及格了,給你糖吃!"<<endl;
  11.     else
  12.     cout<<"不及格!打屁股!"<<endl;
  13.     goto re;
  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<<"請輸入SCORE:";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.        cout<<"及格"<<endl;
  12.     }  
  13.     else
  14.     {
  15.        cout<<"不及格"<<endl;
  16.     }
  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.     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<<"請輸入SCORE:";
  8.     cin>>score;
  9.     if(score>=60){
  10.          cout<<"及格"<<endl;              
  11.     }
  12.     else{
  13.          cout<<"不及格"<<endl;     
  14.     }
  15.    
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

TOP

返回列表