Skip to content

manish404/whatgradeisit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Website - https://manish404.github.io/whatgradeisit/

Grading system in Nepal

GPA Grade Description
3.6 - 4.0 A+ Outstanding
3.2 - 3.6 A Excellent
2.8 - 3.2 B+ Very Good
2.4 - 2.8 B Good
2.0 - 2.4 C+ Satisfactory
1.6 - 2.0 C Acceptable
1.2 - 1.6 D+ Partially Acceptable
0.8 - 1.2 D Insufficient
0.0 - 0.8 E Very Insufficient
if (gpa > 3.6 && gpa <= 4.0) return "A+";
else if (gpa > 3.2 && gpa <= 3.6)  return "A";
else if (gpa > 2.8 && gpa <= 3.2) return "B+";
else if (gpa > 2.4 && gpa <= 2.8) return "B";
else if (gpa > 2.0 && gpa <= 2.4) return "C+";
else if (gpa > 1.6 && gpa <= 2.0) return "C";
else if (gpa > 1.2 && gpa <= 1.6) return "D+";
else if (gpa > 0.8 && gpa <= 1.2) return "D";
else if (gpa > 0.0 && gpa <= 0.8) return "E";