/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */packageejercicios;importjava.util.Scanner;/** * * @author roshka */publicclassEjercicio06{publicstaticvoidmain(String[]args){floatprecio;floativa;Scannerscn=newScanner(System.in);System.out.println("Ingrese su precio");precio=scn.nextFloat();iva=(precio*10)/100;precio=precio+iva;System.out.println("El precio de su producto con IVA incluido: "+precio+"$");}}