✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Qu'affiche le code suivant ?
val a = 5
val b = 3
val result = if (a > b) {
a * 2
} else {
b * 2
}
println(result)