Generation

generate functionTue, 21 Mar 2023

crear un programa de facturacion cfdi

public double getSubTotal(){ return this.precio * this.cantidad; } public double getIVA(){ return this.getSubTotal() * this.iva; } public double getTotal(){ return this.getSubTotal() + this.getIVA(); }

Questions about programming?Chat with your personal AI assistant