Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding('utf8')
  3.  
  4. console.log('how old are you? ')
  5. process.stdin.on('data', (age) => {
  6. date = 2019 - age;
  7. if (age < 99 && age > 0){
  8. console.log(date);
  9. }else if (age < 0){
  10. console.log('arrete de mentir');
  11. }else {
  12. console.log('trop vieux');
  13. }
  14. process.exit()
  15. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement