|
if...else 判斷式
本帖最後由 陳品肇 於 2018-7-10 09:55 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int score;
- cout<<"報上你的成績: ";
- cin>>score;
- if(score>=60)
- {
- cout<<"恭喜你! 及格了!";
- }
- else
- {
- cout<<"不及格... 斬!";
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |
|