Variaveis
Por: gordoputo0 • 1/11/2015 • Artigo • 392 Palavras (2 Páginas) • 224 Visualizações
miport javax.swing.JOptionPane;
public class IRR {
public static void main(String args[]){
//--Variaveis--
String var_aux;
double vlr_ded, vlr_liq, vlr_brt = 0, vlr_mes, vlr_ano;
int No_dep;
//-------------------------------------------------------//
var_aux = JOptionPane.showInputDialog("No. Dependente");
No_dep = Integer.parseInt(var_aux); // Solicita numero de dependentes
var_aux = JOptionPane.showInputDialog("Salario Mensal");
vlr_mes = Integer.parseInt(var_aux); // Solicita salario mensal
vlr_ded = (No_dep * 4000 ); // calculo valor a ser deduzido
//-------------------------------------------------------//
vlr_ano = (vlr_mes * 12);
vlr_brt = (vlr_ano - vlr_ded);
vlr_liq = (vlr_brt - vlr_ded); // calculo valor liquido
if (vlr_liq < 21000)
System.out.println("Isento");
if (vlr_liq >= 32000)
System.out.println("15%");
// if (vlr_liq >= 21000 else < 32000 );
// System.out.println("7,5");
// -------Impressão dos Dados
System.out.println("Quantidade de Dependentes: "+No_dep);
System.out.println("Sal. Ano ............: "+vlr_ano);
System.out.println("Sal. Bruto Ano.......: "+vlr_brt);
System.out.println("Valor Dedução .......: "+vlr_ded);
}
}
...