การบ้าน03

parent 94c2647d
{
"folders": [
{
"path": "/home/jun/ProjectCS/nodejs-60-2/week01"
},
{
"path": "/home/jun/ProjectCS/nodejs-60-2"
}
],
"settings": {}
}
\ No newline at end of file
const readline = require('readline');
const r = readline.createInterface({
input: process.stdin,
output: process.stdout
});
// rl.question('คุณ ชื่อ อะไร : ', (name) => {
// rl.question('คุณ เกิด พ.ศ. อะไร : ', (year) => {
// date = 2561 - date;
// console.log(`อายุ ของ คุณ ${name} คือ : ${year}`);
// rl.question('ขอเบอร์ด่วน : ', (phone) => {
// console.log(`คุณ ${name} อายุ ${date} เบอร์ ${phone}`)
// rl.close();
// });
// });
// });
let i = 0;
let label =['กรุณากรอกชื่อ','กรุณากรอก พ.ศ.','กรุณากรอกเบอร์โทร']
let data = []
console.log(`${label[i]}`)
i++;
r.on('line', (line) => {
data[[i-1]] = line
if (i < 3) {
console.log(`${label[i]}`)
i++;
}
else {
console.log(`สวัสดีคุณ ${data[0]} เบอร์ ${data[2]} อายุ ${2561-data[1]} `);
r.close()
}
})
r.on('close', () => r.close())
\ No newline at end of file
{
"name": "week03",
"version": "1.0.0",
"lockfileVersion": 1
}
{
"name": "week03",
"version": "1.0.0",
"description": "การบ้านสัปดาห์ที่ 3",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"homework",
"03"
],
"author": "Jun",
"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