From f60430df9f3a0a26de5cdea9b45708d4735d1fe0 Mon Sep 17 00:00:00 2001 From: Neha Kanwar Date: Mon, 27 May 2024 21:44:41 +0530 Subject: [PATCH 1/2] Update README.md --- Calculators/CGPA-Percentage-Calculator/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Calculators/CGPA-Percentage-Calculator/README.md b/Calculators/CGPA-Percentage-Calculator/README.md index 571650ca2..283211aed 100644 --- a/Calculators/CGPA-Percentage-Calculator/README.md +++ b/Calculators/CGPA-Percentage-Calculator/README.md @@ -2,7 +2,7 @@ ## Description :- -Quickly convert your CGPA to percentage and vice versa with the CGPA ⟷ Percentage Calculator. On the basis of formula `Percentage = CGPA * 7.1 + 11` and `CGPA = (Percentage - 11) / 7.1` this calculator will help you to convert your CGPA to percentage and vice versa. +Quickly convert your CGPA to percentage and vice versa with the CGPA ⟷ Percentage Calculator. On the basis of formula `Percentage = CGPA * 9.5` and `CGPA = Percentage / 9.5` this calculator will help you to convert your CGPA to percentage and vice versa. Start typing in any field and the value will be calculated automatically. From a38bc66cec648da76fb1c2eea02eac3e0c4b2133 Mon Sep 17 00:00:00 2001 From: Neha Kanwar Date: Mon, 27 May 2024 21:46:35 +0530 Subject: [PATCH 2/2] Corrected the formulas --- Calculators/CGPA-Percentage-Calculator/script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Calculators/CGPA-Percentage-Calculator/script.js b/Calculators/CGPA-Percentage-Calculator/script.js index e6d429200..f1985a215 100644 --- a/Calculators/CGPA-Percentage-Calculator/script.js +++ b/Calculators/CGPA-Percentage-Calculator/script.js @@ -1,10 +1,10 @@ // functions to convert values function cgpaToPercentage(cgpa) { - return cgpa * 7.1 + 11 + return cgpa * 9.5 } function percentageToCGPA(percentage) { - return (percentage - 11) / 7.1 + return percentage / 9.5 } // Function to handle conversion and display values