myCompiler
English
Deutsch
English
Español
Français
Italiano
日本語
한국어
Nederlands
Polski
Português
Recent
Login
Sign up
Deutsch
English
Español
Français
Italiano
日本語
한국어
Nederlands
Polski
Português
Recent
Login
Sign up
J
@Jaki
cuadrantes
Python
7 hours ago
x = float(input("Ingresa la coordenada x: ")) y = float(input("Ingresa la coordenada y: ")) if x > 0 and y > 0: print("Está en el cuadrante I") elif x < 0 and y > 0: print("Está en el cuadrante II") elif x < 0 and y < 0: print("Está en
primo
Python
7 hours ago
n = int(input("Escribe un número: ")) if n < 0: print("No se permiten números negativos") else: c = 0 for x in range(1, n + 1): if n % x == 0: c += 1
calculadora
Python
7 hours ago
num1 = float(input("Primer número: ")) num2 = float(input("Segundo número: ")) print("Suma:", num1 + num2) print("Resta:", num1 - num2) print("Multiplicación:", num1 * num2) if num2 != 0: print("División:", num1 / num2) else:
actividad1
Python
8 hours ago
nombre = input("") edad = input("") ciudad = input("") print("Buenos dias", nombre, "tienes", edad, "años de edad y vives en", ciudad + ", adiós.")
tienda
MongoDB
1 month ago
use TIENDA db.productos.insertMany([ { nombre: "Laptop HP", categoria: "Electronica", precio: 12000, stock: 15, marca: "HP", disponible: true },
consultas
MongoDB
2 months ago
use TIENDA db.proveedores.insertMany([ { clave_proveedor: 1, nombre: "Manuel" }, { clave_proveedor: 2, nombre: "Daniel" }, { clave_proveedor: 3, nombre: "Emanuel" }, { clave_proveedor: 4, nombre: "Omar" }, { clave_proveedor: 5, nombre: "J
Previous
Next page