Posts by user38537 • 71 points
1 post
-
6
votes3
answers4966
viewsQ: What is the function of the operator "!" (exclamation)?
In this method: public boolean aplicaDescontoDe(double porcentagem) { if(porcentagem > 0.3) { return false; } else { this.valor -= valor * porcentagem; return true; } } What the operator means !…