✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quelle est la valeur de output après l'exécution de ce code ?
val a = 2
val b = 5
val c = 3
val output = if (a < b) {
if (b > c) {
a + c } else { b - a}
} else {
c * 2
}