返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"Please type in your score...";
  8.     cin>>a;
  9.     if (a==100){
  10.     cout<<"Nice! Congrats on your full score."<<endl;}
  11.     else if(a>=60 && a<=100){
  12.     cout<<"Better luck next time!"<<endl;}
  13.     else if(a>=1 && a<=60){
  14.     cout<<"Try harder, you'll get there soon!"<<endl;}
  15.     else if(a==0){
  16.     cout<<"Bro are you okay?"<<endl;}
  17.     else {
  18.     cout<<"I sure hope you aren't drunk!"<<endl;}
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼
Attention Seeker </3

TOP

返回列表