返回列表 發帖
  1. #include<iostream>
  2. #include<cstdilb>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;  
  7.     cout<<"請輸入你的分數"<<endl;
  8.     cin>>score;
  9.     if(score=100)
  10.     {
  11.         cout<<"不錯"<<endl;            
  12.     }
  13.     else if(score>=60 && score<100)
  14.     {
  15.         cout<<"腦袋有洞"<<endl;     
  16.     }
  17.     else if(score<60)
  18.     {
  19.         cout<<"笨笨笨!"<<endl;
  20.     }
  21.     else
  22.     {
  23.         cout<<"別亂完!"<<endl;         
  24.     }
  25.     system("pause");
  26.     return 0;
  27.         
  28. }
複製代碼

TOP

返回列表