From 5638290e105bbac71de3f6e280fcacb68005b2cb Mon Sep 17 00:00:00 2001 From: SOURAB REDDY Date: Fri, 7 Nov 2025 10:34:54 +0000 Subject: [PATCH] =?UTF-8?q?docs:=20fix=20overlapping=20grade=20ranges=20?= =?UTF-8?q?=E2=80=94=20make=20A=2090-100=20and=20non-overlapping=20B/C=20r?= =?UTF-8?q?anges?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 09_Day_Conditionals/09_conditionals.md | 14 +++++++------- old_files/readme7-9.md | 10 +++++----- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/09_Day_Conditionals/09_conditionals.md b/09_Day_Conditionals/09_conditionals.md index 522bbac33..225259bb3 100644 --- a/09_Day_Conditionals/09_conditionals.md +++ b/09_Day_Conditionals/09_conditionals.md @@ -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. diff --git a/old_files/readme7-9.md b/old_files/readme7-9.md index 6d531e4c2..61fd4d271 100644 --- a/old_files/readme7-9.md +++ b/old_files/readme7-9.md @@ -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.