返回列表 發帖

if...else 判斷式

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {

  6.     int num1 = 20; // 宣告一個int 的變數, 初始值:20
  7.    
  8.     cout << "請輸入你的成績:" << endl;
  9.     cin >> num1;
  10.    
  11.     if( num1 >= 60 ) //if(條件)    當條件成立時,執行15行
  12.     {
  13.        cout << "你及格囉!!" << endl;
  14.     }
  15.     else   //當條件不成立時,執行19行
  16.     {
  17.        cout << "不及格!!該打屁股囉" << endl;   
  18.     }
  19.     // 大於 >
  20.     // 大於等於 >=
  21.     // 小於 <
  22.     // 小於等於 <=
  23.    
  24.    
  25.    
  26.     system("pause");
  27.     return 0;   
  28. }
複製代碼

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

TOP

本帖最後由 彭煥宇 於 2017-10-2 20:45 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int num=0;
  7.    
  8.     string name="請輸入你的成績:";
  9.    
  10.     cout<<name<<endl;
  11.     cin>>num;
  12.     if(num>=60)
  13. {
  14.     cout << "你及格囉!!" << endl;
  15. }

  16.     else   
  17. {
  18.     cout << "不及格!!該打屁股囉!!" << endl;
  19. }

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

TOP

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int num1 =18;

  7. cout<<"輸入你的年齡:"<<endl;
  8. cin>>num1;
  9. if(num1>=18)
  10. {
  11. cout<<"你及格"<<endl;
  12. }
  13. else
  14. {
  15. cout<<"end"<<endl;
  16. }



  17. system("pause");
  18.     return 0;
  19.    
  20.    
  21.    
  22.    
  23. }

  24.    
複製代碼

TOP

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

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int num=10;
  7.     cout<<"請輸入你的成績"<<endl;
  8.     cin>>num;
  9.     if(num>=60)
  10.     {
  11.     cout<<"好棒棒 給你拍拍手"<<endl;      
  12.     }
  13.     else
  14.     {
  15.     cout<<"哈哈哈!你活該"<<endl;
  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 num=0;
  7.   int num3=0;
  8.   int num1=10;
  9.   int num2=20;
  10.   if(num1>=60)
  11.   {
  12.     cout<<"你及格了喔"<<endl;
  13.   }
  14.   else
  15.   cout<<"不及格該打屁股囉"<<endl;      
  16.       
  17.   system("pause");
  18.   return 0;
  19. }
複製代碼

TOP

返回列表