You are on page 1of 3

ALGORITHM:

1. Start.
2. Input the weighted average score as a percentage (e.g., 88%).
3. If the weighted average score is greater than or equal to 94%, assign the final grade
as 1.0.
4. If the weighted average score is greater than or equal to 88% and less than 93%,
assign the final grade as 1.25.
5. If the weighted average score is greater than or equal to 82% and less than 87%,
assign the final grade as 1.5.
6. If the weighted average score is greater than or equal to 76% and less than 81%,
assign the final grade as 1.75.
7. If the weighted average score is greater than or equal to 70% and less than 75%,
assign the final grade as 2.0.
8. If the weighted average score is greater than or equal to 64% and less than 69%,
assign the final grade as 2.25.
9. If the weighted average score is greater than or equal to 58% and less than 63%,
assign the final grade as 2.5.
10. If the weighted average score is greater than or equal to 52% and less than 57%,
assign the final grade as 2.75.
11. If the weighted average score is greater than or equal to 50%, and less than 51%
assign the final grade as 3.0.
12. If the weighted average score is greater than or equal to 30%, and less than 49%
assign the final grade as 4.0.
13. If the weighted average score is less than 29%, assign the final grade as 5.0.
14. If the weighted average score is INC, assign the final grade as Incomplete.
15. Print the final grade.
16. End.
START

WEIGHTED
AVERAGE
SCORE

Score >= Assign grade


94% as 1.0
YES

NO

88% <= Assign grade


score <93% as 1.25
YES

NO

82% <= Assign grade


score <87% as 1.50
YES

NO

76% <= Assign grade


score <81% as 1.75
YES

NO

70% <= Assign grade


score <75% as 2.0
YES

NO

64% <= Assign grade


score <69% as 2.25
YES

NO

A B
A B

58% <= Assign grade


score <63% as 2.50
YES

NO

52% <= Assign grade


score <57% as 2.75
YES

NO

50% <= Assign grade


score <51%
YES
as 3.0

NO

30% <= Assign grade


score <49% as 4.0
YES

NO

Score <= Assign grade


29% as 5.0
YES

NO

Incomplete Assign grade


YES
as INC

PRINT
GRADE

END

You might also like