- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x;
- cout<<"請輸入你的分數:";
- cin>>x;
- if(x==100)
- {
- cout<<"哇滿分耶!"<<endl;
- }
- else if(x<100 && x>=60)
- {
- cout<<"你及格了"<<endl;
- }
- else if(x>0 && x<60)
- {
- cout<<"不及格砍頭"<<endl;
- }
- else if(x==0)
- {
- cout<<"回家把你打到死"<<endl;
- }
- else
- {
- cout<<"輸入錯誤"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |