E

@Ejun

duewhwhqo bgofguifgigq qgfigfiggq

C++
1 year ago
#include <cstdio> void printstar(int n) { for (int i = 0; i<n; i++) { printf("*"); } }

scripy

Lua
1 year ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Rogueblade", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default). LoadingTitle = "FFRA Script", LoadingSubtitle = "by FRA", Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes DisableRayfieldPrompts = false,

어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어려워어

C++
1 year ago
#include <stdio.h> int f(int n); int dp[10000000]; int cmp[10000000]; int main(void) { int a, b, max = 0; max_num = 0; scanf("%d %d", &a, &b);

pls donate script

Lua
1 year ago
if game.PlaceId == 8737602449 then local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "PLS DONATE Script💲", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default). LoadingTitle = "Gaming scripts", LoadingSubtitle = "by JIMIN", Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes

Arsenal Script hub

Lua
1 year ago
if game.PlaceId == 286090429 then local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "For Any Game", LoadingTitle = "OP Script Hub", LoadingSubtitle = "By 1_F5", ConfigurationSaving = { Enabled = false,

test

Python
2 years ago
global a , x a = 100 ; x = 50 def print_(): print(a) b=200 print(b) def aaa():

정올 C 연습문제1

C
2 years ago
#include <stdio.h> int main() { printf("첫 번째 프로그램입니다."); return 0; }

동명이인

Python
2 years ago
def FindSameName(a): name_dict = {} for nme in a: if name in name_dict: name_dict[name] += 1 else: name_dict[name] = 1 result = set() for name in name_dict: if name_dict[name]>2:

balance 2

Octave
2 years ago
% -------------- center_gravity_1.m ------------- % clear; clf % 잠자리의 x좌표 데이터 x =[0.3; 0.5; 0.5; 7.5; 8.4; 0.8; 0.3]; % 잠자리의 y좌표 데이터 y=[-12.0; -5.6; -3; 1.6; 6.7; -1.5; 0]; % y축 대칭 데이터 x2 = -x(end:-1:1); y2 = y(end:-1:1); nx = [x; x2; x(1)]; ny = [y; y2; y(1)]; plot(nx,ny,'bo-','LineWidth',1.8); hold on; axis image % 보조선 culur = [0.4 0.4 0.4];

balance dragonfly

Octave
2 years ago
% -------------- center_gravity_1.m ------------- % clear; clf % 잠자리의 x좌표 데이터 x =[0.3; 0.5; 0.5; 7.5; 8.4; 0.8; 0.3]; % 잠자리의 y좌표 데이터 y=[-12.0; -5.6; -3.7; -2.6; -0.4; -1.5; -0.2]; % y축 대칭 데이터 x2 = -x(end:-1:1); y2 = y(end:-1:1); nx = [x; x2; x(1)]; ny = [y; y2; y(1)]; plot(nx,ny,'bo-','LineWidth',1.8); hold on; axis image % 보조선 culur = [0.4 0.4 0.4];

역삼각함수 프로그램(파이썬) v3(랜덤)

Python
2 years ago
import math as m import random as r x = r.randrange(1, 10) x = float(x) y = r.randrange(1, 10) y = float(y) pi = m.pi ret = m.atan(x/y)

역삼각함수 프로그램(파이썬) v2(수정)

Python
2 years ago
import math as m x = 5 x = float(x) y = 5 y = float(y) pi = 3.14159265358979323846 ret = m.atan(x/y) dgree = ret * 180/pi

역삼각함수 프로그램(파이썬) v1(입력)

Python
2 years ago
import math as m x = float(input()) y = float(input()) pi = 3.14159265358979323846 ret = m.atan(x/y) dgree = ret * 180/pi print(f'탄젠트의 역삼각함수 = {ret}\n세타의 각도 = {dgree}도')

역삼각함수 프로그램(C/C++/C#)

C
2 years ago
#include <stdio.h> // 기본 입출력 #include <math.h> // 수학 함수 라이브러리 불러오기 #define PI 3.14159265358979323846 void main(void) { double x, y, ret; // x, y 변수 선언