美文网首页
node输入输出

node输入输出

作者: 兰为鹏 | 来源:发表于2019-08-03 11:27 被阅读0次
    process.stdin.setEncoding('utf8');
    process.stdin.on('data', (input) => {
            input = input.toString().trim();
            let a, b;
            let arr = input.split(' ');
            a = parseInt(arr[0]);
            b = parseInt(arr[1]);
            if (a == 3 && b == 5)
                console.log(2)
        })
    

    输入
    3 5
    输出
    2

    相关文章

      网友评论

          本文标题:node输入输出

          本文链接:https://www.haomeiwen.com/subject/noqjdctx.html