✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
К компонентным функциям нижеописанного класса относятся: ….
class complex
{
double real;
double imag;
void define(double re=0.0, double im=0.0)
{ real = re; imag = im; }
void display();
};