Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. wilder@wilder-ThinkPad-T430s:~$ node app.js
  2. How old are you ?
  3. 23
  4. Tu est née en 1996
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. Le code JS:
  12.  
  13. process.stdin.resume()
  14. process.stdin.setEncoding('utf8')
  15.  
  16. console.log('How old are you ? ')
  17. process.stdin.on('data', (number) => {
  18. if (number < 99 && number > 1) {
  19. année = 2019 - number
  20. console.log(`Tu êtes née en ${année}!`)
  21. process.exit()
  22. } else {
  23. console.log("Age incorrecte")
  24. process.exit()
  25. }
  26. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement