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

@PEPELEPU

cuadrante de un punto

Python
7 hours ago
x = float(input("")) y = float(input("")) if x > 0 and y > 0: print("El punto está en el cuadrante I") elif x < 0 and y > 0: print("El punto está en el cuadrante II") elif x < 0 and y < 0:

numero primo

Python
7 hours ago
numero = int(input("")) primo = True if numero <= 1: primo = False for i in range(2, numero): if numero % i == 0: primo = False

positivo o negativo

Python
7 hours ago
numero = float(input("Ingresa un número: ")) if numero > 0: print("El número es positivo") elif numero < 0: print("El número es negativo") else: print("El número es cero")

calculadora

Python
7 hours ago
num1 = float(input("")) num2 = float(input("")) print("") print("") print("") print("") opcion = input(" ")

practica1

Python
7 hours ago
nombre = input("") edad = input("") ciudad = input("") print("Hola", nombre + "," , "tienes" , edad, "años y vives en" , ciudad + ".")

Tienda electronica

MongoDB
2 months ago
use TIENDA db.productos.insertMany([ {nombre:"Laptop HP",categoria:"Electrónica",precio:12000,stock:15,marca:"HP",disponible:true}, {nombre:"Mouse Logitech",categoria:"Accesorios",precio:300,stock:50,marca:"Logitech",disponible:true}, {nombre:"Tecl

tienda

MongoDB
2 months ago
use tienda db.createcollection("proveedores") db.createcollection("productos") db.PROVEEDORES.insertMany([ { Clave_Proveedor: 1, Nombre: "Manuel" }, { Clave_Proveedor: 2, Nombre: "Daniel" }, { Clave_Proveedor: 3, Nombre: "Emanuel" },
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