Recent projects

user input simple

C · an anonymous user
22 hours ago
#include <stdio.h> #define MAXUSERIP 5000 int main(){ char ch,words[MAXUSERIP]; int i = 0; while(1){ ch = getchar(); words[i] = ch; if (i == 5000 || ch == '\0')

user input simple

C · an anonymous user
22 hours ago
#include <stdio.h> int main(){ char ch; char word[10000]; int i = 0; //printf("Enter characters. End by pressing //the Enter key: ");

user input simple

C · an anonymous user
22 hours ago
#include <stdio.h> int main(){ char ch; char word[10000]; int i = 0; //printf("Enter characters. End by pressing //the Enter key: ");

Temp

C++ · an anonymous user
23 hours ago
#include <iostream> using namespace std; int main() { int temp; int cont=0; do{

Inf

C++ · an anonymous user
23 hours ago
#include <iostream> using namespace std; int main() { int quanti, num; int contPari=0, contDispari=0; int i=0; cout<<"Quanti numeri vuoi inserire? ";

user input simple

C · an anonymous user
23 hours ago
#include <stdio.h> int main(){ char ch; char word[10000]; int i = 0; //printf("Enter characters. End by pressing //the Enter key: ");

Money

Lua · an anonymous user
23 hours ago
MONEY.NETWORK_INITIALIZE_CASH(wallet, bank) -> void -- 0x3DA5ECD1A56CBA6D MONEY.NETWORK_DELETE_CHARACTER(characterSlot, p1, p2) -> void -- 0x05A50AF38947EB8D MONEY.NETWORK_MANUAL_DELETE_CHARACTER(characterSlot) -> void -- 0x821418C727FCACD7 MONEY

Tiempo de espera en una cola de atención a clientes de 24/7

Python · an anonymous user
23 hours ago
import random # Semilla para que la simulación sea reproducible random.seed(123) # Configuración de horarios horarios = [ { "inicio": 7 * 60, "fin": 13 * 60,

Tiempo de espera en una cola de atención a clientes de 24/7

Python · an anonymous user
23 hours ago
import random # Semilla para que la simulación sea reproducible random.seed(123) # Configuración de horarios horarios = [ { "inicio": 7 * 60, "fin": 13 * 60,

user input simple

C · an anonymous user
23 hours ago
#include <stdio.h> int main(){ char ch; char word[10000]; int i = 0; printf("Enter characters. End by pressing the Enter key: ");

user input simple

C · an anonymous user
23 hours ago
#include <stdio.h> int main(){ char ch; char word[10000]; int i = 0; printf("Enter characters. End by pressing the Enter key: ");

123

Python · an anonymous user
23 hours ago
# --------------------------------------------------------- # 안드로이드 패턴 잠금의 경우의 수를 완전탐색(백트래킹)으로 직접 세는 코드 # # 3x3 격자, 점 번호는 아래와 같이 배치되어 있다고 가정한다. # 1 2 3 # 4 5 6 # 7 8 9 # # 규칙 두 가지: # 1) 4개 이상 9개 이하의 점을 순서대로 연결한다 (한 번 쓴 점은 재사용 불가)

reverse_string

Java · kusuma0909
23 hours ago
import java.util.*; import java.lang.*; import java.io.*; // The main method must be in a class named "Main". class Main { public static void main(String[] args) { System.out.println("Hello world!"); String word="kusuma";

Aashi.txt

SQL · an anonymous user
23 hours ago
CREATE DATABASE SchoolDB;

Inf

C++ · an anonymous user
23 hours ago
#include <iostream> using namespace std; int main() { int temperatura; int sottoZero =0; do { cout <<"Inserisci una temperatura (-999 per terminare): "; cin >>temperatura;

opa

R · an anonymous user
23 hours ago
x <- seq(-pi, pi, 0.1) plot(x, cos(x))

help.r

R · an anonymous user
23 hours ago
uvas <- 18 laranja <- 22 frutas <- uvas + laranja frutas printado <- 5 print(printado)

Inf

C++ · an anonymous user
23 hours ago
#include <iostream> using namespace std; int main() { int n, numero; int pari =0; int dispari =0; int i =0; cout << "Quanti numeri vuoi inserire? ";

ciclo for

C# · an anonymous user
23 hours ago
using System; namespace ciclo_for_2 { internal class ENTRADASCICLOFOR { static void Main(string[] args) { double precioEntrada = 100000;

HIGTECH

Python · DANYKING24855
23 hours ago
print('Hello world!') import numpy as np import pandas as pd # 1. Configuración de datos correlacionados np.random.seed(42) n = 500 experiencia = np.random.uniform(0.5, 12.0, n) horas_capacitacion = np.random.uniform(5, 50, n)