0
I want to understand the real intention of this command line, what it does ? My teacher didn’t comment about her just started the project with her, in which case I created the code:
package exemplo;
import java.util.Scanner;
public class Exemplo {
public static void main(String[] args) {
Scanner teclado=new Scanner(System.in);
float salario_base,salario_liquido;
System.out.println("Informe seu salário bruto:");
salario_base=teclado.nextFloat();
salario_liquido=(float)(salario_base*1.20*0.93);
System.out.println("O salário líquido é:" + salario_liquido);
}
}
But what are you serving the publublic for...