Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding('utf8')
  3.  
  4. console.log('Quel est ton age ?')
  5. process.stdin.on('data', (int) => {
  6.  
  7. if (int < 99) {
  8. console.log(2019 - int - 1)
  9.  
  10. process.exit()
  11. }
  12. if (int > 99 || typeof int == 'string') {
  13. console.log('Entrez un nombre valide !')
  14. process.exit()
  15. }
  16.  
  17.  
  18. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement