Generation

generate functionTue, 18 Apr 2023

aplicacion de preguntas

fun main() { print("What is your name? ") val name = readLine()!! print("How old are you? ") val age = readLine()!!.toInt() print("What is your username? ") val username = readLine()!! println("Your name is $name, you are $age years old, and your username is $username") }

Want to kickstart your project?Use the new AI Studio to create your code