let a = prompt("Введите число a")
let b = prompt("Введите число b")
let c = prompt("Введите число c")
let result = null
if (a > 5 && b > 5 && c > 5) {
result = a * b * c
} else {
result = a + b + c
}
console.log(result)
Ответ: Ответ на картинке.
Объяснение:
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
let a = prompt("Введите число a")
let b = prompt("Введите число b")
let c = prompt("Введите число c")
let result = null
if (a > 5 && b > 5 && c > 5) {
result = a * b * c
} else {
result = a + b + c
}
console.log(result)
Ответ: Ответ на картинке.
Объяснение: