✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quelle est la sortie console du programme suivant ?
fun main() {
for (i in 10 downTo 4 step 3) {
print("$i ")
}
}