Generation

generate functionSat, 03 Jun 2023

crear una clase venta con los atributos folio,fecha,evento,

public class Venta { int folio; Date fecha; String evento; public Venta(int folio, Date fecha, String evento) { this.folio = folio; this.fecha = fecha; this.evento = evento; } }

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