www.hackerrank.com/challenges/grading/problem
next multiple of 5를 이용하여 다시 점수를 매기는 문제이다.
next multiple of 5가 무엇인지를 알아야 한다.
<next multiple of 5>
- Take the number in a variable.
- Divide it by 5 and get the decimal value. (원래의 값에서 5로 나눈다. 이때 나누어진 값은 소수여야 함)
- Take the ceil value of the decimal value by using math. ceil(). (ceil()함수를 이용하여 나눈 값을 올림해준다.)
- Multiply it by 5 to get the result. (올린 값에 다시 5를 곱한다.)