1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import java.util.Scanner fun main() { val scanner = Scanner(System.`in`) println("Calculadora de Promedio de Notas") val notas = DoubleArray(4) for (i in 0 until 4) { print("Ingrese la nota ${i + 1}: ") notas[i] = scanner.nextDouble() } val promedio = calcularPromedio(notas) println("El promedio de las notas ingresadas es: $promedio") } fun calcularPromedio(notas: DoubleArray): Double { var suma = 0.0 for (nota in notas) { suma += nota } return suma / notas.size } |