myCompiler myCompiler
Deutsch English Español Français Italiano 日本語 한국어 Nederlands Polski Português
Recent
Login Sign up
Recent
Login Sign up
K

@kevinR

Ejercicio2 - Trabajo solicitado

Swift
2 hours ago
// Definición de la clase class CuentaBancaria { var titular: String var saldo: Double // Inicializador init(titular: String, saldo: Double) { self.titular = titular self.saldo = saldo }

Ejercicio Version2

Swift
3 days ago
struct Estudiante { let nombre: String let cuenta: String var notas: [Double] func calcularPromedio() -> Double { if notas.isEmpty { return 0.0 } var suma = 0.0 for nota in notas { suma += nota }

NOTA ESTUDIANTES

Swift
3 days ago
// Definición de la estructura Estudiante struct Estudiante { var nombre: String var cuenta: String var notas: [Double] // Método para calcular el promedio func calcularPromedio() -> Double { let suma = notas.reduce(

PROGRAMACION MOVIL II

Swift
3 days ago
//Busqueda de Diccionarios //Declaracion de un diccionario con tipos estrictos [String:Double] let catalogoTienda: [String: Double] = [ "Laptop": 1200.0, "Mouse": 25.0, "Teclado": 45.0 ]
Previous Next page

Supported languages

Deno JavaScript NodeJS Python Ruby Go C C++ Java C# TypeScript PHP Bash R Octave (MATLAB) Fortran Lua Erlang SQL MySQL MongoDB Clojure D Perl Kotlin Swift Rust Assembly
© 2026 mycompiler.io
Terms of service Privacy policy Contact us