Recent projects

정처기 C언어 - 16진수

C · pjs0519
1 hour ago
#include <stdio.h> typedef struct student { char* name; int score[3]; } Student; int dec(int enc) { return enc & 0xA5; }

123

C++ · an anonymous user
1 hour ago
#include <iostream> #include <iomanip> // Переводим время (ч, м) в минуты от начала суток int toMinutes(int h, int m) { return h * 60 + m; } // Обратно: из общего количества минут получаем ч и м void fromMinutes(int totalMin, int& h, int& m) {

123

C++ · an anonymous user
1 hour ago
#include <iostream> #include <iomanip> // Переводим время (ч, м) в минуты от начала суток int toMinutes(int h, int m) { return h * 60 + m; } // Обратно: из общего количества минут получаем ч и м void fromMinutes(int totalMin, int& h, int& m) {

a

C++ · akiraLF
1 hour ago
#include <iostream> #include <vector> #include <cmath> #include <ctime> #include <cstdlib> // Une structure de neurone pur sans aucune bibliothèque externe class Neuron { public: double value;

linguagem C++

C++ · an anonymous user
1 hour ago
#include <iostream> using namespace std; int main() { int num; cout <<" Digite um número "; cin >> num; if (num % 2 == 0 ) cout << " O número é par " << endl; else cout << " O número é impar" << endl;

Homeowrk DBMS

SQL · devojayjay
1 hour ago
-- create a table CREATE TABLE students ( id INTEGER PRIMARY KEY, student_name TEXT NOT NULL, subject TEXT NOT NULL, marks INTEGER NOT NULL ); -- insert some values INSERT INTO students VALUES (1, 'Ryan', 'Math',81); INSERT INTO students VAL

ITDSA Deliverable 2

MongoDB · an anonymous user
1 hour ago
db.createCollection('book'); db.createCollection('borrowedBooks'); db.createCollection('author'); db.createCollection('bookAuthor'); db.createCollection('member'); db.author.insertMany( [ { authorID: "Auth01", firstName: "Gege", lastName: "Akut

alterego 한글화

Python · an anonymous user
1 hour ago
import os import re import shutil # AlterEgo database.lua 위치 FILE_PATH = r"C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns\AlterEgo\database.lua" # 변경할 약자 REPLACEMENTS = { "POS": "사론",

hd-2d

NodeJS · akiraLF
1 hour ago
/*: * @target MZ * @plugindesc [v1.0] Rendu Perspective 3D Type HD-2D - Par NOVA * @author NOVA_IA * * @help * Ce plugin modifie la projection de PixiJS pour créer un effet de profondeur. * Les sprites restent en 2D mais sont inclinés dans u

Kaggle Python Kurs - Booleans

Python · proelli3000
1 hour ago
# Kaggle Python Kurs. Exercise on booleans def onionless(ketchup, mustard, onion): """Return if the customer does not want onions""" return not onion print(onionless(True, False, True)) def wantsalltoppings(ketchup, mustard, onion): ""

project pbl

MySQL · an anonymous user
1 hour ago
create table UserProfile( UserID INT PRIMARY KEY, FullName VARCHAR(100), Email VARCHAR(150) NOT NULL UNIQUE, MobileNumber VARCHAR(20) NOT NULL, Password VARCHAR(255) NOT NULL ); INSERT INTO UserProfile (UserID, FullName, Email, Mobilenumber, Pa

정처기 java - 오버라이딩3

Java · pjs0519
1 hour ago
public class Main { public static void main(String[] args) { new Child(); System.out.println(Parent.total); } } class Parent { static int total = 0;

project

MongoDB · an anonymous user
1 hour ago
db.createCollection("AUTHOR"); db.createCollection("BOOK"); db.createCollection("BOOKAUTHOR"); db.createCollection("MEMBER"); db.createCollection("BORROWEDBOOKS"); db.AUTHOR.insertMany([ { authorID: 1, firstName: "John", lastName: "Doe" }, { a

Deliverable 2: Database management with MongoDB

MongoDB · an anonymous user
1 hour ago
db.createCollection("Author"); db.createCollection("Book"); db.createCollection("BookAuthor"); db.createCollection("Member"); db.createCollection("BorrowedBooks"); db.Author.insertMany([ { authorID: 1, firstName: "Chinua",

Deliverable 2

MongoDB · an anonymous user
1 hour ago
db.createCollection("author") db.createCollection("book") db.createCollection("bookauthor") db.createCollection("member") db.createCollection("borrowedbooks") db.author.insertMany([ { authorID: "A001", firstName: "Trevor", lastName: "Noah" }'

j

C# · EmillyCris
1 hour ago
esquerda = 0; direita 0; veloc = 4; hveloc = 0; esquerda = keyboard_check(ord("A")) direita = keyboard_check(ord("D"))

pragramme

NodeJS · an anonymous user
1 hour ago
const user = { Prenom: "Mohamed", Nom: "Camara", poids: "77kg", Taille: "1m65", villedenaissance: "conakry", adresse: { Rue:"5 rue de québec", codepostal: 44300, Ville: "Nantes",

myproject

Octave · an anonymous user
1 hour ago
clear; clc; close all; A = [ 0, 1, 0, 0; 9.8, 0, -9.8, 0; 0, 0, 0, 1; -9.8, 0, 29.4, 0]; B = [ 0, 0; 1, -2; 0, 0;

しゅーてぃんぐげーむ

Python · an anonymous user
1 hour ago
import random import time # 自分の飛行機の横の位置(最初は真ん中の「3」) my_ship = 3 print("💥 シューティングゲーム、スタート! 💥") print("【ルール】敵(👾)と同じ数字を入力して撃ち落とせ!") print("「99」を入力するとゲームを終了するよ。") print("---------------------------------------------")

Karnel Hub

Lua · Dexeno
1 hour ago
print 'hello world!'