Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have grades from 1 to 5 where 1 is the best and 5 is the worst(But not just integral numbers like 1, also 1.14 and so on). I want to calculate how many stars each grade would be(5 stars would be the best, 1 star the worst - 3 would stay 3 of course - but the rest?) I googled to get the result but I'm not finding anything helpful. Maybe I'm missing the forest for the trees, I don't know. Basically it would be the reverse number I guess? I want to do that in PHP.

share|improve this question

2 Answers

up vote 3 down vote accepted

Pretty straightforward I would think:

$new_grade = 6 - $old_grade;

Or for a more generic solution:

$new_grade = $grade_max + $grade_min - $old_grade;
share|improve this answer

Star = 6 - Grade

So:

5 → 1  
4 → 2  
3 → 3  
2 → 4   
1 → 5  
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.