Recent projects

P316-TP1-3

Python · jeje40
1 day ago
from math import sqrt print('Hello world!') Y=[2**k for k in range(1,11)] print("Y=",Y) P=[] for i in range(1,11): if i==1 : P.append(0.15) else : if i==6 :

OWI

Python · an anonymous user
1 day ago
print('Hello world!')

buck sort 4-7-26

C · an anonymous user
1 day ago
//========================================= //buck sort 4-7-26 1v //========================================= //---------------------------------------- #include <stdio.h> #include <string.h> #include <ctype.h> //-----------------------------------

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

skystone

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

first.programming.exercis2

Python · Sajedehhosseinpour
1 day ago
print('Hello world!') namee = 'hello world' name = 'hi' print(name) print(namee) print('name') print("namee") intage = 22 print(intage) age = 16

Use of Built-In numbers with functions

Python · Pradyun101613
1 day ago
# You have been using variables and data types to solve the different problem statements. # Imagine if you did not have to worry about some of the operations, and it got done by the snap of a finger. # Well!! Python can definitely help you. # Want

Calculadora de terrenos

C · an anonymous user
1 day ago
#include <stdio.h> int main() { float frente, fondo, costo_m2; float area, precio_total; // Solicitar datos al usuario printf("==CALCULADORA DE TERRENOS===\n"); printf("Ingresa los metros de frente: "); scanf("%f",&frente)

Encender PC

Java · an anonymous user
1 day ago
public class Main{ public static void main(String[]args){ System.out.println("Encendiendo..."); System.out.println("Cargando sistema..."); System.out.println("Listo"); }}

Encender PC

Java · an anonymous user
1 day ago
public class Main{ public static void main(String[]args){ System.out.println("Encendiendo..."); System.out.println("Cargando sistema..."); System.out.println("Listo"); }}

P316-TP1-3

Python · an anonymous user
1 day ago
from math import sqrt print('Hello world!') Y=[2**k for k in range(1,11)] print("Y=",Y) P=[] for i in range(1,11): if i==1 : P.append(0.15) else : if i==6 :

Questão 3

Java · an anonymous user
1 day ago
abstract class Funcionario { private String nome; private String cpf; private double salarioBase; public Funcionario(String nome, String cpf, double salarioBase) { this.nome = nome; this.cpf = cpf; this.salar

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') {