- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- while(true)
- {
- int a;
- cout>>"請輸入一個分數(0~100):";
- cin>>a;
- if(a>100)
- {
- cout <<"阿不就好棒棒?"<<endl;
-
- }
- else if (a>=90 )
- {
- cout <<"粗心der屁孩!"<<endl;
-
- }
- else if (a>=70)
- {
- cout <<"送你一個字 < 爛 >!"<<endl;
-
- }
- else if (a>=60)
- {
- cout <<"xxx 加由"<<endl;
- }
- else
- {
- cout <<"fukk..."<<endl;
- }
- }
-
- return 0;
- }
複製代碼 |