how is your score?
題目說明
依序輸入口試成績、筆試成績、優等門檻、及格門檻等四個數字
若兩個成績有一個大於等於優等門檻,則輸出Good
若兩個成績均小於及格門檻,則輸出Fail
其他狀況則輸出Normal。
輸入資料限制:輸入數字都是整數,最小為0,最大為100。 優等門檻大於等於及格門檻。
輸入
四個成績
輸出
狀態
sample input1
90 59 90 60
sample output1
Good
sample input2
89 1 90 2
sample output2
Normal
sample input3
69 68 95 70
sample output3
Fail
Comments