|
if...else 判斷式
本帖最後由 李泳霖 於 2024-1-29 15:56 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int score;
- cout<<"報上你的成績: ";
- cin>>score;
- if(score>=60)
- {
- cout<<"恭喜你! 及格了!"<<endl;
- }else
- {
- cout<<"不及格~ 斬!"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |
|