✅ 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() {
try {
val s = "jj"
val x = s.toInt()
println(x)
} catch (e: NumberFormatException) {
println("NFE")
}
}