The summary of your scores

Report a typo

We have a list of scores from your Kotlin tests. Please obtain the summary of your scores printing the "max:min:average".

Sample Input 1:

10.0 9.5 8.0 7.5 6.0 5.5

Sample Output 1:

10.0:5.5:7.75
Write a program in Kotlin
fun main() {
val list = readln().split(" ").map { it.toDouble() }
// write your code here
val res =


println(res)
}
___

Create a free account to access the full topic