Update Operacao.java: Operação de divisão

parent 3132a9ba
...@@ -5,4 +5,9 @@ public interface Operacao { ...@@ -5,4 +5,9 @@ public interface Operacao {
{ {
return x * y; return x * y;
} }
public double OperacaoDiv(double x, double y)
{
return x / y;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment