Why float
is not accepted for the numbers 0.197 and 0.185?
Code:
float salBruto, salLiquido;
Scanner ent = new Scanner (System.in);
System.out.println("Informe o seu salário:");
salBruto = ent.nextFloat();
if (salBruto >= 1500 & salBruto <=2500) {
salLiquido = salBruto + (salBruto * 0.197);
} else {
if (salBruto > 2500 & salBruto <= 5000) {
salLiquido = salBruto + (salBruto * 0.185);
} else {
if (salBruto < 1500 & salBruto > 5000) {
salLiquido = salBruto;
}
}
}
ent.close();