Recent programs

3차시

Python · psm09
25 minutes ago
x=int(input()) if(x%2==0): print("짝") else: print("홀") print((1==2) and (1==1)) print(((1==2) and (1==1)) or (3==3))

3차시

Python · tlsgustn7397
25 minutes ago
x=int(input()) if(x%2==0): print("짝") else: print("홀") print((1==2) and (1==1)) print(((1==2) and (1==1)) or (3==3)) a,c = map(int,input().split()) ##= a,c,b = map(int,input().split())

3차시

Python · junseo09
25 minutes ago
#x=int(input()) #if(x%2==0): #print("짝") #else: #print("홀") #print((1==2) and (1==1)) ## and : 둘 중 하나라도 거짓이면 거짓 #print(((1==2) and (1==1)) or (3==3)) ## or: 둘 중 하나라도 참이면 참 #a,c=map(int,input().split()) ##시험 문제 X

3교시

Python · doo7
26 minutes ago
x=int(input()) if(x%2==0): print("짝") else: print("홀") print((1==2) and (1==1)) print(((1==2) and (1==1)) or (3==3))

ABC R

R · Chute
26 minutes ago
n <- 200 lambda_that <- 3.2 x_call <- rpois(n, lambda_that) T <- sim(x_call) lambda_MLE <- T/n #mean(x_call) lambda_MLE loglik_pois <- function(lambda, x) { if (lambda <= 0) return(-Inf) sum(dpois(x, lambda = lambda, log = TRUE))

main.py

Python · an anonymous user
26 minutes ago
import sys import urllib.parse import xbmc import xbmcgui import xbmcplugin HANDLE = int(sys.argv[1]) BASE_URL = sys.argv[0] def construir_menu():

3차시

Python · yoonseol9
28 minutes ago
x=int(input()) if(x%2==0): print("짝") else: print("홀") print((1==2) and (1==2)) print(((1==2) and (1==2)) or (3==3))

EJERCICIO07

NodeJS · Melanie_Medrano
28 minutes ago
class Sala { constructor(codigo,nombre) { this.codigo=codigo; this.nombre=nombre; } toString(){ return this.nombre; } } class Pelicula {

sdasd

Octave · an anonymous user
28 minutes ago
t = 0:0.001:2; v_yuk = 16.33 * sqrt(2) * sin(10*t - 1.5*pi/180); i_yuk = 15.84 * sqrt(2) * sin(10*t + 54.8*pi/180); plot(t, v_yuk, 'b', 'LineWidth', 1.5); hold on; plot(t, i_yuk, 'r', 'LineWidth', 1.5); grid on; title('Yuk Gerilimi ve Akimi Zamana Bagli Degisimi');

202641020이하린

C · an anonymous user
32 minutes ago
#include <stdio.h> char board[3][3] = { {' ', ' ', ' '}, {' ', ' ', ' '}, {' ', ' ', ' '} }; void printBoard() { for (int i = 0; i < 3; i++) {

BST

C · Yeong
33 minutes ago
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> typedef int TElement; typedef struct TNode { TElement data; struct TNode* left; struct TNode* right;

CarineBrien

MySQL · cmalanda
35 minutes 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, 'Ryanbis', 'M'); INSERT INTO students VALUES (2, 'Ryan', 'M'); INSERT INTO students VALUES (3, 'Joanna', 'F');

이서준.py

Python · an anonymous user
36 minutes ago
print('Hello world!')

3차시

Python · shp18chs
40 minutes ago
x=int(input()) ##input으로 받은 자료는 문자형으로 인식함. if(x%2==0): print("짝") else: print("홀") print((1==2) and (1==1)) print(((1==2) and (1==1)) or(3==3)) ##불(bool)연산자: 참과 거짓을 나타냄. or는 둘중에 하나만 맞아도 true. a,c = map(int,input().split())

Kooo

C++ · an anonymous user
41 minutes ago
#include <iostream> #include <chrono> #include <random> int num=100000; void pros(int *ab){ volatile int c=0; auto start = std::chrono::high_resolution_clock::now();

Main

Java · an anonymous user
46 minutes ago
// ====================================================== // PATRÓN BUILDER - CONFIGURACIÓN DE LAPTOP // ====================================================== import java.util.Scanner; // ====================================================== // CLASE PRODUCTO: LAPTOP // ======================================================

Programa empleados sueldo

Python · an anonymous user
46 minutes ago
import time empleados = [] with open ("Aguascalientes.txt","r") as archivo: next (archivo) for linea in archivo: datos = linea.strip().split("\t") if len(datos) > 10: empleado = {

MainLaptop

Java · an anonymous user
47 minutes ago
// PATRÓN BUILDER - CONFIGURACIÓN DE LAPTOP import java.util.Scanner; // CLASE PRODUCTO: LAPTOP class Laptop { private String procesador; private int ramGB; private int ssdGB;

3-8활동(2)

C · junhoon
48 minutes ago
#include <stdio.h> int main() { int n; scanf("%d",&n); if(n==1) printf("가위"); if(n==2) printf("바위");

3-8활동 2

C · jieunjieun
49 minutes ago
#include <stdio.h> int main(){ int number; scanf("%d",&number); if(number==1) printf("가위"); if(number==2)