牛客网js node 输入模板

牛客网js node 输入模板

let readline = require('readline')
const rl = readline.createInterface({
  input: process.stdin,
  output: process.stdout
})

let inputTime = 1
let inputArray = []
rl.on('line', line => {
  inputArray.push(line)
  if (inputTime === 2) {
    // coding here
    
    console.log(inputArray)
  } else {
    inputTime++
  }
})
上一篇:判断输入框值是否为空


下一篇:单目相机校正和Mat、Bitmap、Image<Bgr,byte>相互转换