Generation

generate functionMon, 17 Apr 2023

Hacer una calculadora que realice los cálculos del triángulo rectángulo y cilindro

Script function areaTriangle(base, height) { return base * height / 2; } function areaCylinder(radius, height) { return Math.round(Math.PI * Math.pow(radius, 2) * height); }

Want to kickstart your project?Use the new AI Studio to create your code