题解 | #取近似值#

取近似值

https://www.nowcoder.com/practice/3ab09737afb645cc82c35d56a5ce802a

const rl = require("readline").createInterface({ input: process.stdin });
var iter = rl[Symbol.asyncIterator]();
const readline = async () => (await iter.next()).value;

void async function () {
    // Write your code here
    while(line = await readline()){
        let tokens = line.split('.');
        // console.log(tokens);
        let a = parseInt(tokens[0]);
        // console.log(a);
        let b = parseInt(tokens[1]);
        while (b > 10)
            b = b / 10
        // console.log(b);
        if (b >= 5)
            console.log(a+1);
        else
            console.log(a);
    }
}()

全部评论

相关推荐

点赞 评论 收藏
分享
浩浩没烦恼:一二面加起来才一个小时? 我一面就一个小时多了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务