Recent projects

JUEGOCOMPETITIVO_CODIGO

Java · an anonymous user
23 hours ago
package es.upm.dit.adsw.cifrasyletras.juego; import es.upm.dit.adsw.cifrasyletras.cifras.Cifras; import es.upm.dit.adsw.cifrasyletras.cifras.CifrasPracticaCompetitiva; import es.upm.dit.adsw.cifrasyletras.letras.Letras; import es.upm.dit.adsw.cifra

ITDSA2-12 Project 2 Deliverable 2

MongoDB · an anonymous user
23 hours ago
db.createCollection("Member"); db.createCollection("Author"); db.createCollection("Book"); db.createCollection("BookAuthor"); db.createCollection("BorrowedBooks");

scheda tecnica

Python · an anonymous user
23 hours ago
from docx import Document from docx.shared import Pt from docx.enum.text import WD_ALIGN_PARAGRAPH from docx.oxml.ns import qn from docx.shared import RGBColor # Crea un nuovo documento Word doc = Document() # Imposta il font globale

Rel

Octave · an anonymous user
23 hours ago
R=input ('enter my roll no:'); T=570-R; P=9215-2*R; C=470-R; Lambda_T=input ('failure rate of transistor:'); Lambda_P=input ('failure rate of registors:'); Lambda_C=input ('failure rate of capacitor s:'); Lamda_S=(T*Lambda_T)+(P*Lambda_P)+(C*Lambda_

Rel

Octave · an anonymous user
23 hours ago
R=input ('enter my roll no:'); T=570-R; P=9215-2*R; C=470-R; Lambda_T=input ('failure rate of transistor:'); Lambda_P=input ('failure rate of registors:'); Lambda_C=input ('failure rate of capacitor s:'); Lamda_S=(T*Lambda_T)+(P*Lambda_P)+(C*Lambda_

Younkks

Lua · Scorpio_Hub
23 hours ago
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local LocalPlayer = Players.LocalPlayer local BackpackRemote = ReplicatedStorage:FindFirstCh

hazime1

C · an anonymous user
23 hours ago
#include <stdio.h> int main() { int a=5,b=3; printf("a=%d と b=%d を足すと\n",a,b); printf("%d",a+b); return 0; }

1111

NodeJS · an anonymous user
23 hours ago
console.log("Hello world!");//@name SuperVibeBot //@display-name 🐸 SuperVibeBot v1.5.63 //@version 1.5.63 //@api 3.0 //@update-url https://raw.githubusercontent.com/nupa0w0-hash/supervibebot-update/main/SuperVibeBot.update.js //@arg api_key string "

class parrot

Python · cheeseofthecheeses
23 hours ago
class Parrot: speices = "bird" def __init__(self, name , age): self.name = name self.age = age

프로그래밍 심화탐구_MLTI 계산 프로그래밍

C · an anonymous user
23 hours ago
#include <stdio.h> #include <string.h> // 1. 피실험자 데이터를 저장할 구조체 정의 typedef struct { char name[20]; // 이름 (소비자 식별자) float sleep_time; // 하루 평균 수면 시간 (시간) float weekly_dose; // 일주일간 멜라토닌 복용량 (mg) int drowsi

c++otamesi

C++ · an anonymous user
23 hours ago
#include <cstdio> #include <cmath> int main() { const double p = 4.0; // 極対数 const double R = 0.05; // 巻線抵抗 [Ohm] const double Ld = 1.0e-3; // d軸インダクタンス [H] const double Lq = 2.0e-3;

oriented

Python · cheeseofthecheeses
23 hours ago
class Vehicle: def __init__(self, max_speed, mileage): self.max_speed = max_speed self.mileage = mileage

iterators reverse array

C++ · anmoll
23 hours ago
#include <iostream> #include <vector> using namespace std; int main() { vector<int> arr = {1, 2, 3, 4, 5}; // A normal for loop using reverse iterators // auto automatically deduces the type: vector<int>::reverse_iterator

basic reverse array

C++ · anmoll
23 hours ago
#include <iostream> #include <vector> using namespace std; int main() { int n; cout << "Enter the number of elements: "; cin >> n;

3016 : 1등한 학생의 성적

C · havecozy
23 hours ago
#include <stdio.h> struct grade { char name[20]; int s1, s2, s3; }; int main(void){ int n, i;

Rel

Octave · an anonymous user
23 hours ago
R=input ('enter my roll no:'); T=570-R; P=9215-2*R; C=470-R; Lambda_T=input ('failure rate of transistor:'); Lambda_P=input ('failure rate of registors:'); Lambda_C=input ('failure rate of capacitor s:'); Lamda_S=(T*Lambda_T)+(P*Lambda_P)+(C*Lambda_

MongoDB.js

MongoDB · an anonymous user
23 hours ago
db.createCollection("authors") db.createCollection("books") db.createCollection("members") db.createCollection("bookAuthors") db.createCollection("borrowedBooks")

Q2

MongoDB · an anonymous user
1 day ago
// Create collections db.createCollection("AUTHOR"); db.createCollection("BOOKAUTHOR"); db.createCollection("BOOK"); db.createCollection("BORROWEDBOOKS"); db.createCollection("MEMBER"); // 1. Insert records into MEMBER collection db.MEMBER.insertMa

Demo

SQL · an anonymous user
1 day ago
-- -- create a table -- CREATE TABLE students ( -- id INTEGER PRIMARY KEY, -- name TEXT NOT NULL, -- gender TEXT NOT NULL -- ); -- -- insert some values -- INSERT INTO students VALUES (1, 'Ryan', 'M'); -- INSERT INTO students VALUES (2, 'Joann

1

C · an anonymous user
1 day ago
#include <stdio.h> #include <time.h> int main() { clock_t start, end; start = clock(); int a = 0x1; int b = 0x3;