Recent projects

proyecto de tarea

C++ · an anonymous user
1 day ago
#include <iostream> using namespace std; int main() { int anio, num; // Algoritmo 1: Edad cout << "Anio de nacimiento: "; cin >> anio; cout << "Edad: " << 2026 - anio << " anios\n\n";

llegada de clientes, el tiempo de atención y el comportamiento de la fila durante un período determi

Python · an anonymous user
1 day ago
import random # ============================== # Simulación de una cola de atención al cliente 24/7 # ============================== # Tiempo total de simulación (8 horas = 480 minutos) TIEMPO_SIMULACION = 480 # Variables del sistema

+79535233438

Lua · an anonymous user
1 day ago
-- Vinil.Skript.lua ============================================= -- MODULE: CACHE_REFRESH.lua -- Принудительный сброс текстурного кэша -- ============================================= function refreshTextures() -- Поиск маркера рендера loc

gerenciador-de-senhas

Lua · an anonymous user
1 day ago
function google() local emailprincipal = "sunnydropgamer22@gmail.com" local senhaprincipal = "robux1000!" local google1 = end

PROYECTO 1, 7MO

Python · STEF0316
1 day ago
print('Hello world!')

EduvosOnlineLibrary

MongoDB · an anonymous user
1 day ago
// DELIVERABLE 2: DATABASE MANAGEMENT WITH MONGODB // Eduvos Online Library Database System // QUESTIONS 2.1 - 2.5 FINAL CODE db = db.getSiblingDB("EduvosOnlineLibraryDB"); // QUESTION 2.1 // Create the five collections from the ERD if (!db.getCo

javascript

NodeJS · an anonymous user
1 day ago
// Agrega puntos y guión de forma dinámica function formatearRUT(input) { let valor = input.value.replace(/[^0-9kK]/g, ''); // Deja solo números y K if (valor.length < 2) return; let cuerpo = valor.slice(0, -1); let dv = valor.s

Question 2.1

MongoDB · Tshiamo
1 day ago
db.students.insertMany([ { id: 1, name: 'Ryan', gender: 'M' }, { id: 2, name: 'Joanna', gender: 'F' } ]); db.students.find({ gender: 'F' });

Wobly life

C · an anonymous user
1 day ago
#include <stdio.h> int main() { printf("Hello world!\n"); return 0; #include <stdio.h> #include <stdlib.h> #include <time.h> #include <string.h>

prova

Python · an anonymous user
1 day ago
import pandas as pd # Creazione della struttura dati per il planning data = { "Giorno": ["Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato", "Domenica"], "Mattina (09:00 - 13:00)": [ "📐 Matematica (Teoria ed esercizi)"

gag2

Lua · an anonymous user
1 day ago
if not game or not game:GetService("Players") then error("[GAG Hub] Must run inside Roblox game") end --------------------------------------------------------------- -- CONFIG --------------------------------------------------------------- loc

Bubble-Sor

Python · cetzal
1 day ago
def bubble_sort(arr) -> int: n = len(arr) for i in range(n): for x in range(n-i-1): if arr[x] > arr[x+1]: arr[x], arr[x + 1] = arr[x + 1], arr[x]

file

Python · an anonymous user
1 day ago
# Choose ONE provider by importing it: #Change groq --> hf to use hugging face API #Change hf --> groq to use groq API from hf import generate_response # from hf import generate_response def get_essay_details(): print("\n=== AI Writing Assista

Estudiante

Java · Fhellips_xy
1 day ago
public class Main { public static void main(String[] args) { double nota = 3.1; if (aprobo(nota)) { System.out.println("Aprobó"); } else { System.out.println("No aprobó"); }

Essai

Python · an anonymous user
1 day ago
from math import* print('Hello world!') print(1+1) print('6*3') #ceci n'est qu'un commentaire x=2;y=3;z=5-3;a="bonjour";b='salut';t=x/2 print('x') print(x+1) print(x*y**2) print((x*y)**2)

EduvosOnlineLibraryDB

MongoDB · an anonymous user
1 day ago
// DELIVERABLE 2: DATABASE MANAGEMENT WITH MONGODB // Eduvos Online Library Database System // QUESTION 2.1: Create the five collections from the ERD db = db.getSiblingDB("EduvosOnlineLibraryDB"); db.createCollection("authors"); db.createCollectio

144. Tamanho de uma String com a função strlen na linguagem de programação C?

C · an anonymous user
1 day ago
#include <stdio.h> #include <stdlib.h> #include <string.h> int main() { char palavras[500]; int tam; printf("Digite uma frase:\n");

2.2 Insert sample records

MongoDB · sunflowe456
1 day ago
// Members db.Members.insertMany([ { member_id: 1, first_name: "Joanna", last_name: "Brown", email: "Joanna@gmail.com", phone: "1234567890" }, { member_id: 2, first_name: "Ryan", last_name: "Green" } ]); // Authors db.Authors.insertMany([ { a

Ejericicio

Python · Amandaa
1 day ago
import csv import os # ============================================ # DATOS DE ENTRADA # ============================================ costos_fijos = 5000 costo_variable_unitario = 15 precio_venta = 25

143. Como remover o ENTER do final da string lida com a função fgets?

C · an anonymous user
1 day ago
#include <stdio.h> int main() { char palavras[500]; int j = 0; printf("Digite uma frase:\n"); fgets(palavras, 500, stdin);