返回列表 發帖
  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.     {
  12.         cout<<"恭喜你! 及格了!";
  13.     }
  14.     else
  15.     {
  16.         cout<<"不及格... 斬!";
  17.     }
  18.     cout<<endl;
  19.     system("pause");
  20.     return 0;   
  21. }
  22.    
  23.    
  24.    
  25.    
  26.    
複製代碼

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>=18)
  10.    {
  11.         
  12.    cout<<"您可以考取駕照";
  13.    
  14.    
  15.     }else
  16.     {
  17.         cout<<"未滿18歲不能考取駕照";
  18.     }
  19.     cout<<endl;
  20.    


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

TOP

返回列表