Commit 3132a9ba authored by Gabriel Coimbra's avatar Gabriel Coimbra

Operação de multiplicação

parent 14cb0bb6
public interface Operacao {
public double opera(double x, double y);
public double OperacaoMult(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