0
Hello, i'm not understanding all this erros, someone could help me please?
4 ответов
+ 1
There are may of error in your program use condition properly
Here u used & of u should use &&
U also missed closing bracket bracket of else if statement
else if( salario_bruto > 1045) && (salario_bruto > 2089.6){
inss = salario_bruto * 0.09;
ir = salario_bruto * 0.09;
}
You have some more closing bracket.
In conditions use one more bracket like this
else if( (salario_bruto > 1045) && (salario_bruto > 2089.6))
Try to debug one by one
+ 2
João Bernardo yes your this format %2.f is wrong thats why you should write like this
%.2f
0
Thanks, I will do it now
0
It's working now, thank you sou much.
I have more one question, in solo learn the %2.f don't work?