Recent projects

exp003

Octave · an anonymous user
21 hours ago
clc; clear; close all; % INPUT DATA SEQUENCES x = [1 2 3 4]; h = [1 2 3 4]; % FIND LENGTH OF SEQUENCES Nx = length(x);

SSAFY 사전교육

SQL · kanggyu
21 hours ago
-- create a table CREATE TABLE Reservation ( ID INT, Name VARCHAR(30), ReserveDate DATE, RoomNum INT ); ALTER TABLE Reservation MODIFY COLUMN RoomNum FLOAT;

exp003

Octave · an anonymous user
21 hours ago
clc; clear; close all; % INPUT DATA SEQUENCES x = [1 2 3 4]; h = [1 2 3 4]; % FIND LENGTH OF SEQUENCES Nx = length(x);

Project 15 (الوحدة 3)

Python · ra_1fh
21 hours ago
print("Welcome to the test 'Are you Syrian or not': ") print("You should use transportation, train, bus or taxi ") transportation = input("What will you choose? \n ").lower() if transportation == "train": print("Sorry, there is no train in Syria."

Result

C · albatross0706
21 hours ago
#include <stdio.h> int main() { int Bengali, English, Physics, Math, Chemistry, Biology; printf("Enter numbers for six subjects \n"); scanf("%d %d %d %d %d %d", &Bengali, &English, &Physics, &Math, &Chemistry, &Biology); int lowMarks =

网络用语分析工具

Python · an anonymous user
21 hours ago
# 网络用语库:词汇+释义+书面替换词 net_words = { "yyds": {"mean": "永远的神", "replace": "十分优秀、无可替代"}, "绝绝子": {"mean": "夸张夸赞/吐槽用语", "replace": "十分出色、不尽人意"}, "emo": {"mean": "情绪低落伤感", "replace": "内心惆怅、情绪低落"}, "栓Q": {"mean": "搞笑调侃式感谢", "replace": "十分感谢"}

anime astral

Lua · an anonymous user
21 hours ago
-- SCRIPT PRINCIPAL - BOT MASTER PARA ROBLOX -- Interface moderna com design limpo e profissional -- Sistema de Farm de Mobs e Dungeons/Raids local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserInpu

헤헤

Python · an anonymous user
21 hours ago
태양 = [ "지구" , "토성" ] print ("작동 구동 성공") print (태양) 우리은하 = '태양계' 블랙리스트 = ["외계인", "괴생명체", "모기"] print("보안 시스템 가동 완료") print(블랙리스트)

امیررضا کردنائیج

Python · an anonymous user
22 hours ago
import math import numpy as np class NumericalAnalysis: @staticmethod def c2_bisection(f, a, b, tol=1e-10, max_iter=100): fa = f(a) fb = f(b) if fa * fb > 0:

امیررضا کردنائیج

Python · an anonymous user
22 hours ago
import math import numpy as np # ========================================================= # فصل 2 : حل معادلات غیرخطی # ========================================================= def bisection(f, a, b, tol=1e-10, max_iter=100): """

+ milionaria

Python · an anonymous user
22 hours ago
import random # Gera 6 números únicos de 1 a 50 numeros = sorted(random.sample(range(1, 51), 6)) # Gera 2 trevos únicos de 1 a 6 trevos = sorted(random.sample(range(1, 7), 2)) print("=== +MILIONÁRIA ===") print("Números:", " ".join(f"{n:02d}" for

Twin_Symmetric_Prime

Python · mahirelhisadi
22 hours ago
""" ATTRACTOR COORDINATE SYSTEM: COMPLETE TEST Run this. It takes 2-5 minutes. """ import math import time def A(j): return (4**j - 1) // 3

anime astral

Lua · an anonymous user
22 hours ago
-- ============================================ -- SCRIPT PRINCIPAL - BOT MASTER PARA ROBLOX -- ============================================ -- Interface moderna com design limpo e profissional -- Sistema de Farm de Mobs e Dungeons/Raids -- ========

图像

Python · an anonymous user
22 hours ago
import numpy as np import matplotlib.pyplot as plt def phi_series(x, N): s = 0.0 for n in range(N): s += (-1)**n * (2/5)**(n+1) / (n+1) * x**n return s def fourier_F(x, N):

Lagrange multiplier

Octave · an anonymous user
22 hours ago
clear clc syms x y z L f(x,y,z)=x^2+y^2+z^2; g(x,y,z)=3*x^2+4*x*y+6*y^2-140; F=f+L*g; Fx=diff(F,x); Fy=diff(F,y); Fz=diff(F,z); S=solve(g,Fx,Fy,Fz,'Real',true);

15663 NM9

C++ · qazsxc2
22 hours ago
#include <bits/stdc++.h> using namespace std; //14888 ㄱㄱ int n,m; int arr[10]; int num[10]; int is_used[10]; void NM(int now_n){ if(now_n==m) {

Lagrange multiplier

Octave · an anonymous user
22 hours ago
clear clc syms x y z L f(x,y,z)=x^2+y^2+z^2; g(x,y,z)3*x^2+4*x*y+6*y^2-140; F=f+L*g; Fx=diff(F,x); Fy=diff(F,y); Fz=diff(F,z); S=solve(g,Fx,Fy,Fz,'Real',true);

123

C++ · an anonymous user
22 hours ago
#include <stdio.h> int main() { a[] = list[1,2,3,4,5]; printf(a); }

123

C++ · an anonymous user
22 hours ago
#include <stdio.h> int main() { printf("HW"); return 0; }

KAMO ITDSA

MongoDB · karabo14TH
22 hours ago
db.createCollection("Author"); db.Author.insertMany([ { authorID: 1, firstName: "John", lastName: "Smith" }, { authorID: 2, firstName: "Sarah",