Recent projects

tests

C · an anonymous user
7 hours ago
#include <stdio.h> void printBoard(int[] board) { for (i=0; i<rows; i++) { for (j=0; j<lines; j++) { printf("%d ", board[i][j]); } printf("\n"); }

cuadrantes

Python · Jaki
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

WhatsApp Image 2026-06-17 at 08.29.22-exercicio

SQL · LeviGomesPr0
7 hours ago
⚡ EXERCÍCIO 2 — 10 min | Diagrama ER Desenhe (papel ou ferramenta online) o DER do cenário abaixo: 📄 Cenário: Sistema de Escola Online A escola tem professores que ministram disciplinas e alunos que se matriculam nessas disciplinas. Cada disciplina

Excuse me

Java · Benemann
7 hours ago
import java.util.*; import java.lang.*; import java.io.*; import java.util.Scanner; class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int escolha = sc. (); if(escolha > 10){

Original vZwet SNR prior with zero means

R · an anonymous user
7 hours ago
## ========================================================= ## 4-component mixture-Normal prior ## Define the prior ONCE here ## ========================================================= m1 <- 0.0 m2 <- 0.0 m3 <- 0.0 m4 <- 0.0

shayanny.php

PHP · an anonymous user
7 hours ago
<?php<!DOCTYPE html> <html lang="pt-BR"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Meu Nome PHP</title> </head> <body> <h1>

Parcheggio

SQL · thomas_garrone
7 hours ago
CREATE TABLE ZONA ( Nome VARCHAR(50) NOT NULL, AreaCitta VARCHAR(100) NOT NULL, TariffaOraria DECIMAL(5,2) NOT NULL, PRIMARY KEY (Nome) ); CREATE TABLE PARCHEGGIO (

config

NodeJS · ajez
7 hours ago
/* ============================================================ CONFIGURACION DE CONEXION ------------------------------------------------------------ Pega aqui los dos datos que te da Supabase. Los encuentras en: Supabase > Project Set

Deliverable 2

MongoDB · an anonymous user
7 hours ago
use EDUVOSLibraryDB db.createCollection('Author') db.createCollection('Book') db.createCollection('Member') db.createCollection('BookAuthor') db.createCollection('BorrowedBooks')

config

NodeJS · an anonymous user
7 hours ago
/* ============================================================ CONFIGURACION DE CONEXION ------------------------------------------------------------ Pega aqui los dos datos que te da Supabase. Los encuentras en: Supabase > Project Set

cuadrante

Python · CESARNAV
7 hours ago
num1 = int(input("")) num2 = int(input("")) if num1> 0 and num2>0: print("estas en el cuadrante 1: ", num1,",",num2) elif num1<0 and num2>0: print("estas en el cuadrante 2: ", num1, ",", num2) elif num1<0 and num2<0: print("estas en el

ITDSA Q2

MongoDB · michael_wants_money
7 hours ago
db.createCollection("Author") db.createCollection("BookAuthor") db.createCollection("Book") db.createCollection("BorrowedBooks") db.createCollection("Member") db.Author.insertMany ([ { authorId: 1,

enviar

PHP · an anonymous user
7 hours ago
<?php header('Content-Type: application/json; charset=utf-8'); if ($_SERVER['REQUEST_METHOD'] !== 'POST') { http_response_code(405); echo json_encode([ 'ok' => false, 'message' => 'Método no permitido' ]); exit;

calculadora

Python · an anonymous user
7 hours ago
num1 = float(input("Primer número: ")) operador = input("Operación (+, -, *, /): ") num2 = float(input("Segundo número: ")) if operador == "+": print(num1 + num2) elif operador == "-": print(num1 - num2) elif operador == "*": print(num1

primo

Python · Jaki
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 · josafatarriaga
7 hours ago
# Calculadora básica para MyCompiler print("=== CALCULADORA BÁSICA ===") while True: print("\nSeleccione una opción:") print("1. Sumar") print("2. Restar") print("3. Multiplicar") print("4. Dividir")

config

NodeJS · an anonymous user
7 hours ago
/* ============================================================ CONFIGURACION DE CONEXION ------------------------------------------------------------ Pega aqui los dos datos que te da Supabase. Los encuentras en: Supabase > Project Set

itdsa project 2. question 2.1

MongoDB · an anonymous user
7 hours ago
// Reset collections to ensure schema consistency db.book.drop(); db.member.drop(); db.borrowedbooks.drop(); // 1. Insert book data db.book.insertMany([ { "bookID": 101, "title": "Harry Potter and the Philosopher's Stone" }, { "bookID": 102, "t

ITDSA2-12 - EDUV8989682 - MONGO

MongoDB · an anonymous user
7 hours ago
db.createCollection("AUTHOR"); db.createCollection("BOOK"); db.createCollection("MEMBER"); db.createCollection("BOOKAUTHOR"); db.createCollection("BORROWEDBOOKS"); db.AUTHOR.insertMany([ { authorID: "A01", firstName: "Adewale", lastName: "Obaro"

cuadrante de un punto

Python · PEPELEPU
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: