Recent projects

code_that_finally_works

Java · an anonymous user
22 hours ago
import java.io.*; import java.util.*; /** * FileManagementSystem - Simulates OS file management operations * Handles file fragment collection, memory space calculation, and transfer simulation * * @author College Student * @version 2.0 * @da

Somme de Nombre 1 à 10000, n fois

TypeScript · Fredy_Python
22 hours ago
function calculeSommeNFois(size:number) { for (let i:number = 1; i <= size; i++) { let somme = 0 for (let j:number = 1; j <= 10000; j++) { somme += j } console.log(somme) } }

essai

Python · an anonymous user
22 hours ago
# Entrée de l’état initial. n0 = input("quantité initiale de butane ?") n1 = input("quantité initiale d’isobutane ?") n0 = float(n0) # Transforme la chaîne de caractère entrée en nombre décimal. n1 = float(n1) # Calcul du quotient de réaction initia

Assignment_memory_simulation

Java · an anonymous user
22 hours ago
import java.util.*; import java.lang.*; import java.io.*; // The main method must be in a class named "Main". class Main { public static void main(String[] args) { System.out.println("my assignment"); } }

Py mia

Python · an anonymous user
22 hours ago
# ===================== IMPORTS ET UTILITAIRES ===================== import os import sys import time import datetime import threading import queue import random import subprocess import uuid

リスト

Python · an anonymous user
22 hours ago
# あなたのディグ用プログラム items = ["リーバイス70507", "ディッキーズ874(USA)", "リバースウィーブ(ボロ)"] print("ーーー ハンティングリスト自動生成 ーーー") for item in items: print(f"★ 倉庫で見つけたら即確保:{item}") print("ーーーーーーーーーーーーーーーーーーーー") print("ファイルの生成が正常に完了しました!")

yunxing

Python · an anonymous user
22 hours ago
import pandas as pd import matplotlib.pyplot as plt import matplotlib.dates as mdates # 读取文件(注意:如果你的文件名有空格,请改一下) df = pd.read_excel('OttaiCGM_24D660CE34D0.xlsx') df['时刻'] = pd.to_datetime(df['时刻'], format='%Y.%m.%d %H:%M') df = df.sort_values('时刻')

TRIANGOLI

Java · vitofox
22 hours ago
import java.util.*; import java.lang.*; import java.io.*; // The main method must be in a class named "Main". class Main { public static void main(String[] args) { int scelta; Scanner num=new Scanner(System.in);

Paires complémentaires de n : x * y = n

TypeScript · Fredy_Python
22 hours ago
let n:number = 12 for (let x:number = 1; x <= n; x++) { for (let y:number = n; y > 0; y--) { if (x * y === n) { console.log(x, y) } } }

ㅇㅇㅇ

C · an anonymous user
22 hours ago
#include <stdio.h> #include <string.h> int main() { char url[200]; int score = 0; printf("URL을 입력하세요: "); scanf("%199s", url);

Código

Python · an anonymous user
22 hours ago
import random # Simulación de una cola de atención al cliente durante 60 minutos tiempo_simulacion = 60 # minutos clientes = [] tiempo_actual = 0 while tiempo_actual < tiempo_simulacion: # Tiempo entre llegadas (1 a 5 minutos)

2nd project

C++ · maysin_1111
22 hours ago
#include <iostream> int main() { std::cout << "Hello world!" << std::endl; return 0; }

Paires complémentaires de n : x + y = n

TypeScript · Fredy_Python
22 hours ago
let n:number = 6 for (let x:number = 1; x < n; x++) { for (let y:number = n - 1; y > 0; y--) { if (x + y === n) { console.log(x, y) } } }

employee

MySQL · an anonymous user
22 hours ago
create database employee; use employee; create table employee(emp_id,emp_name,emp_phone,emp_state); desc employee;

1st project

C++ · maysin_1111
22 hours ago
#include <iostream> int main() { std::cout << "Hello world!" << std::endl; return 0; }

exp003

Octave · an anonymous user
22 hours ago
clc; clear all; close all; % Generation of Sine Wave 1 N = 101; n = 0:N-1; xout1 = sin(0.02*pi*n); figure;

SOPHIA

C · rak99
22 hours ago
#include <stdio.h> int main() { int i, n; scanf("%d", &n); for (i = 1; i <= n; i++) { printf("%d\t%d\t%d SOPHIA\n", 4 * i - 3, 4 * i - 2, 4 * i - 1); }

Calcule de Factorielle n

TypeScript · Fredy_Python
22 hours ago
let n:number = 6; // Don't change this line function calculFactoriel(given:number): number { let factoriel:number = 1 for (let i:number = 1; i <= given; i++) { factoriel *= i } return factoriel }

exp003

Octave · an anonymous user
22 hours ago
clc; clear all; close all; % Parameters f1=300; f2=300; N=128; n=0:N-1; A=1;

dsa proj 2 q 2

MongoDB · an anonymous user
22 hours ago
use("olms"); db.createCollection("AUTHOR"); db.createCollection("BOOKAUTHOR"); db.createCollection("BOOK"); db.createCollection("BORROWEDBOOKS"); db.createCollection("MEMBER") db.AUTHOR.insertMany([ {