Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- https://shpp.gitbook.io/zero/tutorials/if-else/empire-state-building-lift
- let floor = prompt("Введіть поверх")
- if (floor < 1 || floor > 102 ){
- console.log("Невірний поверх")
- }
- else if (39 >= floor && floor >= 24){
- let password = prompt("Введіть пароль")
- if (password == 1337){
- console.log("OK")
- }
- else {
- console.log("Невірний пароль")
- }
- }
- else console.log ("Ok")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement