✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quel affichage produit le code suivant ?
fun main() {
for (i in 3..1) {
print("$i ")
}
println("fin")
}