Merge pull request #720 from Arcanixhades0/fix/grade-ranges-day9

docs: fix overlapping grade ranges (Day 9)
This commit is contained in:
Asabeneh 2026-01-10 18:48:18 +02:00 committed by GitHub
commit d29a533079
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 12 deletions

View File

@ -233,13 +233,13 @@ Enter number two: 3
1. Write a code which gives grade to students according to theirs scores:
```sh
80-100, A
70-89, B
60-69, C
50-59, D
0-49, F
```
```sh
90-100, A
80-89, B
70-79, C
60-69, D
0-59, F
```
1. Check if the season is Autumn, Winter, Spring or Summer. If the user input is:
September, October or November, the season is Autumn.

View File

@ -760,11 +760,11 @@ else:
```
1. Write a code which give grade to students according to theirs scores:
```sh
80-100, A
70-89, B
60-69, C
50-59, D
0 -49, F
90-100, A
80-89, B
70-79, C
60-69, D
0-59, F
```
1. Check if the season is Autumn, Winter, Spring or Summer. If the user input is:
September, October or November, the season is Autumn.