Factura Arrays Tarea

Descargar como txt, pdf o txt
Descargar como txt, pdf o txt
Está en la página 1de 3

/*

Facturacion con arreglos


Elaborado por Meylin Paola Murcia
201810010021
*/

package factprincipal;
import java.util.Scanner;
public class Facturacion {

public static void main(String[] args) {


Scanner entrada=new Scanner(System.in);
Factura operacion =new Factura(); //"operracion" es el objeto y Factura es
la clase.

System.out.println("PRODUCTOS"+"\t"+"PRECIOS");

String[] productos = {"PepsiCo","Cafe","aceite","frijoles","sal"};


String[] precio = {"22 Lps","15 Lps","25 Lps","5 Lps","30 Lps"};

for(int contador=0;contador<5;contador++){
System.out.println(productos[contador]+"\t\t"+precio[contador]);}

System.out.println("Ingrese el nombre del Producto");


operacion.setDescripcion(entrada.nextLine());

System.out.println("Ingrese Cantidad del Producto");


operacion.setCantidad(entrada.nextInt());

System.out.println("Ingrese precio del Producto");


operacion.setPrecio(entrada.nextFloat());

//Declaracion de variables
operacion.setSubtotal(0);
operacion.setIsv(0);
operacion.setTotal(0);

System.out.println("PRODUCTO"+"\t"+"PRECIO"+"\t"+"CANTIDAD");

System.out.println(operacion.getDescripcion()+"\t\t"+operacion.getPrecio()
+"\t"+operacion.getCantidad());

System.out.println("----------------------------------------------------");

System.out.println("PRODUCTO"+"\t"+"SUBTOTAL"+"\t"+"ISV"+"\t\t"+"TOTAL");

for(int contador=0;contador<1;contador++){
System.out.println(operacion.getDescripcion()
+"\t\t"+operacion.getSubtotal()+"\t\t"+operacion.getIsv()
+"\t\t"+operacion.getTotal());}

}
}
package factdependiente;

public class Factprincipal {

//DECLARACION DE VARIABLES
private float isv;
private float precio;
private float cantidad;
private float total;
private float subtotal;
private String descripcion;

//metodo set

public void setIsv(float isv) {


this.isv = (float)(subtotal* 0.15);
}

public void setPrecio(float precio) {


this.precio = precio;
}

public void setCantidad(float cantidad) {


this.cantidad = cantidad;
}

public void setTotal(float total) {


this.total = subtotal + isv;
}

public void setSubtotal(float subtotal) {


this.subtotal = cantidad * precio;
}

public void setDescripcion(String descripcion) {


this.descripcion = descripcion;
}
//metodo GET

public float getIsv() {


return isv;
}

public float getPrecio() {


return precio;
}

public float getCantidad() {


return cantidad;
}
public float getTotal() {
return total;
}

public float getSubtotal() {


return subtotal;
}

public String getDescripcion() {


return descripcion;
}

También podría gustarte