Commit 9abf48c6 authored by Patiphan Marak's avatar Patiphan Marak

การบ้าน week3

parent 9120f3e3
const readline = require('readline');
const r = readline.createInterface({
input: process.stdin,
output: process.stdout
});
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",
"description": "ขอสองคะแนน",
"main": "index.js",
"scripts": {
"test": "ขอสองคะแนน"
},
"keywords": [
"ขอสองคะแนนการบ้าน"
],
"author": "Patiphan",
"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