本帖最後由 蔡庭豪 於 2015-10-17 11:08 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x;
- cout<<"輸入您成績:"<<endl;
- cin>>x;
- if(x>=80&&x<=100)
- {
- cout<<"好成績,甲等"<<endl;
- }
- else if(x>=60&&x<=79)
- {
- cout<<"普通成績,乙等"<<endl;
- }
- else if(x>=0&&x<=59)
- {
- cout<<"不及格成績,丙等,吃屎吧"<<endl;
- }
- else if(x>100&&x<0)
- {
- cout<<"你撒謊"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |