| ➥ | homework = int(input("請輸入作業分數:")) |
| ➥ | test = int(input("請輸入小考分數:")) |
| ➥ | exam = int(input("請輸入期末考分數:")) |
| ➥ | score = homework*0.4 + test*0.2 + exam*0.4 |
| ➥ | if score >= 60: |
| ➥ | print("學期總成績:", score,"分,及格了!") |
| ➥ | else: |
| ➥ | print("學期總成績:", score,"分,不及格!") |
| ➥ | homework = int(input("請輸入作業分數:")) |
| ➥ | test = int(input("請輸入小考分數:")) |
| ➥ | exam = int(input("請輸入期末考分數:")) |
| ➥ | score = homework*0.4 + test*0.2 + exam*0.4 |
| ➥ | if score >= 60: |
| ➥ | print("學期總成績:", score,"分,及格了!") |
| ➥ | else: |
| ➥ | print("學期總成績:", score,"分,不及格!") |