Recent projects

somma media e max

C · an anonymous user
23 hours ago
#include <stdio.h> #include <stdlib.h> int main (){ int N, i , max; double media, somma; printf("Quanti dati hai raccolto a seguito della tua inchiesta??\n");

Question2

MongoDB · an anonymous user
23 hours ago
use EduvosLibrary db.createCollection("Author") db.createCollection("Book") db.createCollection("BookAuthor") db.createCollection("Member")

Two_sum

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) { int[] arr={2,7,11,15}; Map<Integer,Integer> m=new HashMap<>();

loopsEX

Java · nour_mkhinini
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) { int count = 0; while (count< 5) { System.out.pri

user input simple

C · an anonymous user
23 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 ==MAXUSERIP || ch == '\0')

user input simple

C · an anonymous user
23 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
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: ");

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

reverse_string

Java · kusuma0909
1 day 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
1 day ago
CREATE DATABASE SchoolDB;

Inf

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