Exemplo n.º 1
0
Polynom Polynom::operator *(int k) const
{
    Polynom res = *this;
    res.mul_scalar(k);

    return res;
}