Generation

generate functionTue, 18 Apr 2023

Realizar un public class llamada ropa que contenga precio, descuento

class Ropa { String nombre; String descripcion; String categoria; String marca; Float precio; Integer stock; String color; String talle; String material; Boolean venta; public Ropa(String nombre, String descripcion, String categoria, String marca, Float precio, Integer stock, String color, String talle, String material, Boolean venta) { this.nombre = nombre; this.descripcion = descripcion; this.categoria = categoria; this.marca = marca; this.precio = precio; this.stock = stock; this.color = color; this.talle = talle; this.material = material; this.venta = venta; } public Float descuento() { if(venta) { return precio * 0.5;

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