Recent projects

skystone

NodeJS · an anonymous user
1 day ago
console.log("Hello world!");

Trabajo 1

Python · an anonymous user
1 day ago
# 1. Datos de entrada: diccionario con productos y su demanda anual inventario = {"Solera ": 9600, "Angulo": 3400, "PTR": 15000, "Aluminio": 3000, "Acero inoxidable":8000} # 2. Ordenar los productos de mayor a menor demanda ordenados = sorted(inven

EJERCICIO PRIMERO

Python · an anonymous user
1 day ago
# 1. Datos de entrada: diccionario con productos y su demanda anual inventario = {"PTR": 6000, "ALUMINIO": 900, "SOLERA": 8000, "ANGULO": 300,"COBRE": 700} # 2. Ordenar los productos de mayor a menor demanda ordenados = sorted(inventario.items(), k

progeh

Octave · an anonymous user
1 day ago
x = -pi:0.1:pi; plot(x, cos(x)) clc; clear; close all; %% 1. خواندن فایل صوتی (با تولید سیگنال جایگزین در صورت نبود فایل) filename = 'File-Gamelan slendro.mid.mp3'; if ~exist(filename, 'file')

Trabalho 2 - Tarciso Tavares

R · an anonymous user
1 day ago
data(iris) names(iris) summary(iris$Petal.Length) summary(iris$Sepal.Width) summary(iris$Petal.Length) summary(iris$Petal.Width) summary(iris$Species) var(iris$Petal.Length) plot(iris$Petal.Length, iris$Petal.Width, pch=21,bg=c("red","green","yellow

Trabalho 2 - Tarciso Tavares

R · an anonymous user
1 day ago
data(iris) names(iris) summary(iris$Petal.Length) summary(iris$Sepal.Width) summary(iris$Petal.Length) summary(iris$Petal.Width) summary(iris$Species) var(iris$Petal.Length) plot(iris$Petal.Length, iris$Petal.Width, pch=21,bg=c("red","green","yellow

programacion 2

Octave · an anonymous user
1 day ago
clc; clear variables; %-------Parametros de entrada---------------------------------------------- Lambda1 = 0; % λ (W/m°C) Cp1 = 130; % (J/kg°C) Gamma = Lambda/Cp; % Γ %-------Parametros geometricos--------------------------------------------- Hx

Numeros pares e impares

C++ · an anonymous user
1 day ago
#include <iostream> using namespace std; int main() { char opcion; cout << "Presione S para iniciar el programa o cualquier otra tecla para salir: "; cin >> opcion; while (opcion == 'S' || opcion == 's') {

Telewizja

Python · an anonymous user
1 day ago
import pygame import random pygame.init() # Rozmiary CELL = 30 COLS = 10 ROWS = 20 WIDTH = COLS * CELL

Browine Point

Python · Pradyun101613
1 day ago
# Math πrate and Sam are extremely happy to have completed their quests. # Now they are aiming for brownie points. # Are you ready to help them? ''' Task 1: Field Trip ''' print("***** Task 1: *****") print() # A teacher is planning a school trip

Numeros pares e impares

C++ · an anonymous user
1 day ago
#include <iostream> using namespace std; int main() { int numero; int cantidad; int sumadepares=0; int sumadeimpares=0; cout<<"¿Cuántos números desea ingresar?";

Numeros pares e impares

C++ · an anonymous user
1 day ago
#include <iostream> using namespace std; int main() { int numero; int cantidad; int sumadepares=0; int sumadeimpares=0; cout<<"¿Cuántos números desea ingresar?";

Numeros pares e impares

C++ · an anonymous user
1 day ago
#include <iostream> #include <math.h> using namespace std; int main() { int numero; int cantidad; int sumadepares=0; int sumadeimpares=0;

Drone pattern recognition

Python · an anonymous user
1 day ago
import cv2 # Vortrainiertes YOLO-Modell laden model = cv2.dnn_DetectionModel( "frozen_inference_graph.pb", "graph.pbtxt" )

Ejercicio 3 Alejandra Rea

Octave · an anonymous user
1 day ago
clc; clear variables; %-------Parametros de entrada---------------------------------------------- Lambda1 = 0.001 ; % (Lambda) (W/m degree C) Lambda2 = 0.06, Cp1 = 1; % (J/kg degree C) Cp2 = 1; %-------Parametros geometricos-----------------------

Ejemplo 2

C · an anonymous user
1 day ago
#include <stdio.h> #include <math.h> int main() { int Raiz_Cuadrada; double x; printf("Ingrese un numero: "); scanf("%lf", &x);

Numeros pares e impares

C++ · an anonymous user
1 day ago
#include <iostream> #include <math.h> using namespace std; int main() { int cantidad; int numero; int contPares = 0, contImpares = 0; int sumaPares = 0, sumaImpares = 0; srand(time(0));

Ejemplo 1

C · an anonymous user
1 day ago
#include <stdio.h> #include <math.h> int main() { double x, y; printf("Ingrese la base: "); scanf("%lf", &x);

While y If-Else

C++ · an anonymous user
1 day ago
#include <iostream> using namespace std; int main() { int opcion = 0; while (opcion != 4) { cout << "\n***** MENU DE OPERACIONES *****" << endl; cout << "0. Sumar 1 + 1" << endl; cout << "1. Restar 5 - 4" << endl;

ultimo programa

Java · an anonymous user
1 day ago
import java.io.FileWriter; import java.io.IOException; import java.util.Scanner; public class AhorroRecursivo { // Método para días impares public static int ahorroImpar(int dia) { if (dia % 2 != 0) { return dia * 2;