返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"請輸入你的成績(絕對不可以說謊喔)"<<endl;
  8.     cin>>a;  
  9.     if(a<=59&&a>0)
  10.     cout<<"再加油,不打你!"<<endl;
  11.     if(a<=84&&a>=60)
  12.     cout<<"你真棒!"<<endl;
  13.     if(a<100&&a>=85)   
  14.     cout<<"我覺得你在說謊,禁足你3天!"<<endl;
  15.     if(a>100||a<0)  
  16.     cout<<"謊報成績!永遠禁足!"<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼
林祐霆

TOP

返回列表