Quando coloco a “.toInt” pra converter a entrada “readLine()!!.toInt” para int aparece o seguinte erro:
Exception in thread “main” java.lang.NumberFormatException create breakpoint: For input string: ” 30″
at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67)
at java.base/java.lang.Integer.parseInt(Integer.java:646)
at java.base/java.lang.Integer.parseInt(Integer.java:778)
at MainKt.main(main.kt:5)
process finished with exit code 1.
E esta é a forma que escrevi a funcao:
fun main(args: Array<String>) {
print(“Qual o seu nome?”)
val nome:String = readLine()!!
print(“Quantos anos voce tem, $nome?”)
val idade:Int = readLine()!!.toInt()
print(“Finalizando, $nome tem $idade anos de idade”)
fico grato pela ajuda!