Created
April 4, 2019 09:22
-
-
Save santiagocodes/6d996d69904707fde405828fb501b038 to your computer and use it in GitHub Desktop.
Quest App How old are you?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
process.stdin.resume() | |
process.stdin.setEncoding('utf8') | |
console.log('Computer: How old are you? ') | |
process.stdout.write('Me: '); | |
process.stdin.on('data', (age) => { | |
console.log('Computer: Tienes ' + age.trim()+ ' años.'); | |
if (!Number(age)){ | |
console.log('¿eh?') | |
} else if (age > 99) { | |
console.log('Computer: ¿Seguro que no estas muerto ya?') | |
} else if (age < 1) { | |
console.log('Computer: ¿Eres del futuro?') | |
} else { | |
var year=2019; | |
var birth=year-age; | |
console.log('Computer: Nacistes en el '+ birth +'.') | |
} | |
process.exit() | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment