给定一个年份,返回该年份所在的世纪。第一个世纪从1年到100年(含),第二个世纪从101年到200年(含),依此类推。
Example
For year = 1905, the output should be
solution(year) = 20;
For year = 1700, the output should be
solution(year) = 17.
Input/Output
[execution time limit] 4 seconds (dart)
[input] integer year
A positive integer, designating the year.
Guaranteed constraints:
1 ≤ year ≤ 2005.
[output] integer
The number of the century the year is in.
2条答案
按热度按时间jum4pzuy1#
vngu2lb82#
这就是你想要吗?