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 number = prompt ("Вкажіть номер поверху")
- if(number >= 40){
- if (number > 102){
- console.log("Невірний поверх")
- }
- if (number <= 102 ){
- console.log("Ok")
- }
- }
- else if(number <= 23){
- if(number < 1){
- console.log("Невірний поверх")
- }
- if (number >= 1){
- console.log("Ок")
- }
- }
- else{
- let password = prompt ("Введіть пароль!")
- if (password == 1337){
- console.log("ОК")
- }
- if (password != 1337){
- console.log("Невірний пароль")
- }
- }
Add Comment
Please, Sign In to add comment