✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quelle est la valeur de result après l'exécution de ce code ?
val x = 4
val y = 6
val result = if (x > 3 && y < 10) {
if (x + y > 8) {
x * y } else { x + y}
} else {
0
}