Exemplo n.º 1
0
Polynom Polynom::operator -(const Polynom &o) const
{
    Polynom res = *this;
    res.sub(o);

    return res;
}