Commit 73f63c0f authored by uu's avatar uu

การบ้านweek3 ขอสองคะแนน

parent 5d39080a
const rl = require('readline');
const r = rl.createInterface(input=process.stdin);
/*r.question ('กรอกชื่อ',(name,what)=> {
r.question('ปีเกิด พ.ศ.',(year) => {
year = 2561 - year
r.question('ขอเบอร์ด่วน',(phone) => {
console.log(`คุณ ${name} อายุ ${year} เบอร์ ${phone}.`)
r.close()
})
})
});
*/
/*
let i = 0
let lable = ['name','year','phone']
let data = []
r.on('line',(line) => {
data[lable[i]] = line
console.log(`${lable[i]} == ${line} and i = ${i}`)
i++
if (i == 3) {
console.log('lable',lable)
lable[9] = 'Holy Cow'
console.log('lable',lable)
console.log('data',data)
r.close()
}
})
r.on('close',() => r.close() )
*/
let index = 0;
let data = [];
console.log('ชื่อ :');
r.on('line',(line)=>{
if(index==0){
data[index] = line;
console.log(`อายุ `);
index ++;
}else if (index==1) {
year = 2561 - line
data[index] = year;
console.log(` เบอร์ `);
index ++;
}else if( index==2){
data[index] = line;
console.log(data[0])
console.log(data[1])
console.log(data[2])
console.log(`สวัสดีคุณ ${data[0]} อายุ ${data[1]} เบอร${data[2]}`)
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": "5811403741",
"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