ขอ2คะแนน

parent 83cbc307
/*
r.question('กรอกชื่อ', (name) =>{
r.question('ปีเกิด พ.ศ.', (year) =>{
year = 2561 - year
r.question('ขอเบอร์ด่วน', (phone) =>{
console.log(`คุณ ${name} อายุ ${year} เบอร์ ${phone}`)
r.close()
})
})
})
*/
const rl = require('readline')
const r = rl.createInterface({
input: process.stdin,
output: process.stdout
});
let i = 0
r.on('line',(line) =>{
if(i==0){
name = line
i++
}else if (i==1){
year = 2561-line
i++
}else if (i==2){
console.log(`สวัสดีคุณ : ${name} อายุ :${year} เบอร์โทรศัพท์ :${line}`);
r.close();
}
})
{
"name": "week03",
"version": "1.0.0",
"description": "การบ้านสัปดาที่ 3",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"homework",
"03"
],
"author": "5811403402",
"license": "ISC"
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment