javaScript 内置熟悉函数 Math
Math.ceil() , ceil 天花板的意思,就是向上去整。
Math.floor , floor 地板的意思,就是向下取整
分割字符串, split()
javaScript v8 模式的读取一行 readline()
解决思路
读取输入,分割整数,判断小数部分和0.5的大小关系再决定向下还是向上取整
let n = readline()
let dot = n - n.split('.')[0]
if(dot >= 0.5) print(Math.ceil(n))
else print(Math.floor(n))