알고리즘/codefights

2>centuryFromYear

Diademata 2017. 6. 28. 17:07
반응형

Given a year, return the century it is in. The first century spans from the year 1 up to and including the year 100, the second - from the year 101 up to and including the year 200, etc.


Example


For year = 1905, the output should be

centuryFromYear(year) = 20;

For year = 1700, the output should be

centuryFromYear(year) = 17.


code>>


int centuryFromYear(int year) {

if (year % 100 == 0)

return year / 100;

else

return year / 100 + 1;

}

반응형

'알고리즘 > codefights' 카테고리의 다른 글

6>makeArrayConsecutive2  (0) 2017.06.28
5>shapeArea  (0) 2017.06.28
4>adjacentElementsProduct  (0) 2017.06.28
3>checkPalindrome  (0) 2017.06.28
1>add  (0) 2017.06.28