- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int score;
- re:
- cout<<"plese enter your score: ";
- cin>>score;
- if(score==100)
- cout<<"awesome marks! I wish you were my homework buddy"<<endl;
- else if(score<100 && score>60)
- cout<<"nice work there buddy!"<<endl;
- else if(score<60 && score>0)
- cout<<"Maybe next time!"<<endl;
- else
- cout<<"Dont be a liar!"<<endl;
- system("pause");
- goto re;
- return 0;
- }
複製代碼 |