Recent projects

1번문제

C · SGOC
10 hours ago
#include <stdio.h> int main() { int i=3; int j=5; scanf("%d%d", &i, &j); if (i >= j) printf("%d - %d = %d\n", i, j, i - j); else

ITDSA

MongoDB · an anonymous user
10 hours ago
// Clean up any existing collections to prevent duplication errors on rerun db.AUTHOR.drop(); db.BOOK.drop(); db.BOOKAUTHOR.drop(); db.MEMBER.drop(); db.BORROWEDBOOKS.drop(); // Create collections db.createCollection("AUTHOR"); db.createCollection(

문제 1번 코드

C · an anonymous user
10 hours ago
#include <stdio.h> int main() { int a ; int b ; printf("정수 두개를 입력하시오:") ; scanf("%d ", &a) ; scanf("%d ", &b) ; if (a-b>=0) { printf("%d", a-b);

mid 2

C · leehoon347
10 hours ago
#include <stdio.h> int main(void) { int n; int j = 1; scanf("%d", &n); while (10^j < n) { if ((n%(10^j))/10^(j-1) != 0){

6.a

Fortran · an anonymous user
10 hours ago
! ================================================================ ! QUESTÃO 6 - MÉTODO DE TAYLOR DE SEGUNDA ORDEM ! ================================================================ ! Programa adaptado a partir do código da professora Regina Lélis !

ejemplo CRUD

MySQL · an anonymous user
10 hours ago
CREATE DATABASE Biblioteca; USE Biblioteca; CREATE TABLE Estudiante ( id_estudiante INT AUTO_INCREMENT PRIMARY KEY, nombre VARCHAR(50) NOT NULL, apellido VARCHAR(50) NOT NULL, correo VARCHAR(100), telefono VARCHAR(20)

ejemplo CRUD

MySQL · an anonymous user
10 hours ago
CREATE DATABASE Biblioteca; USE Biblioteca; CREATE TABLE Estudiante ( id_estudiante INT AUTO_INCREMENT PRIMARY KEY, nombre VARCHAR(50) NOT NULL, apellido VARCHAR(50) NOT NULL, correo VARCHAR(100), telefono VARCHAR(20)

실험1

Python · an anonymous user
10 hours ago
import pygame import random import math pygame.init() WIDTH, HEIGHT = 1000, 700 screen = pygame.display.set_mode((WIDTH, HEIGHT)) pygame.display.set_caption("Aim Trainer")

HackAssembler_basic.c

C · an anonymous user
10 hours ago
#include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #include "Mnemonic.h" #include "Parser.h" #include "Code.h" #define FILENAME_LEN 16 #define LINE_SIZE 128

HackAssembler_basic.c

C · an anonymous user
10 hours ago
#include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #include "Mnemonic.h" #include "Parser.h" #include "Code.h" #define FILENAME_LEN 16 #define LINE_SIZE 128

cajero

C++ · an anonymous user
10 hours ago
#include <iostream> using namespace std; int main() { int clav=1234; float sald=500000; int opc,reti,consig; cout<<"bienvenido"<<endl; cout<<"digite su clave"<<endl;

ProyectoFinal_SistemaGimnasio

SQL · gloribarrantes_
10 hours ago
--Proyecto Final --Sistema de Gestión para Gimnasio --Estudiante:Gloriana Barrantes Rojas --Creación de Tablas CREATE TABLE ROLES ( id_rol INT PRIMARY KEY, nombre VARCHAR(50) NOT NULL, descripcion VARCHAR(255) );

HackAssembler_basic.c

C · an anonymous user
10 hours ago
#include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #include "Mnemonic.h" #include "Parser.h" #include "Code.h" #define FILENAME_LEN 16 #define LINE_SIZE 128

Número a letra

Python · Gabrielgal
10 hours ago
n1= int(input("cual es la letra ? ")) if n1 == 19 and 20: print ("la letra es A ") else n1 == 16 and 17 and 18: print ("la letra es B")

hola_mundo.py

Python · Moons
10 hours ago
print('Hello world!')

Boletos

Python · Leordz07
10 hours ago
#Precio de una entrada Precio = float(input("Ingrese el precio de una entrada: ")) Precio = 500 #Cantidad de entradas Cantidad = int(input("Cuantas entradas quiere comprar (Max 4)")) if cantidad >= 1 and cantidad <= 4: subtotal = precio * cant

정처기 java - equals

Java · pjs0519
10 hours ago
public class Main{ static String[] s = new String[3]; static void func(String[]s, int size){ for(int i=1; i<size; i++){ if(s[i-1].equals(s[i])){ System.out.print("O"); }else{ System.out.print("N"); }

mon

MongoDB · an anonymous user
11 hours ago
db.students.insertMany([ { id: 1, name: 'Ryan', gender: 'M' }, { id: 2, name: 'Joanna', gender: 'F' } ]); db.students.find({ gender: 'F' });

Jacinto

C · an anonymous user
11 hours ago
#include <stdio.h> int main() ‎int x= 6;. ‎float y =2.0; ‎//calculo del programa ‎printf("\n--------resultado --------"); ‎printf("\na x*y=%.2f", x°y); ‎printf("\nb x/y= %.2f",x/y); ‎printf("\nc x%%y- %d" x%(int)y)

Tema 5 – Sistema de Mensagens (WhatsApp) Contexto

SQL · an anonymous user
11 hours ago
CREATE TABLE Usuario ( id_usuario INTEGER PRIMARY KEY AUTOINCREMENT, nome TEXT NOT NULL, telefone TEXT UNIQUE NOT NULL, email TEXT UNIQUE, foto_perfil TEXT ); CREATE TABLE Contato ( id_contato INTEGER PRIMARY KEY AUTOINCREME