- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a;
- cout<<"Please type in your score...";
- cin>>a;
- if (a==100){
- cout<<"Nice! Congrats on your full score."<<endl;}
- else if(a>=60 && a<=100){
- cout<<"Better luck next time!"<<endl;}
- else if(a>=1 && a<=60){
- cout<<"Try harder, you'll get there soon!"<<endl;}
- else if(a==0){
- cout<<"Bro are you okay?"<<endl;}
- else {
- cout<<"I sure hope you aren't drunk!"<<endl;}
- system("pause");
- return 0;
- }
複製代碼 |