void complex<X>::real();
#include <complex>
#include <complex>
#include <iostream>
int main()
{
using namespace std;
// Create a complex number
complex<double> qZ(2.0, 4.0);
cout << "Complex Number : "<< qZ << endl;
// Output the real part
cout << "The real part is "<< qZ.real() << endl;
// Keep the window open
cin.get();
return 0;
}
© 20072025 XoaX.net LLC. All rights reserved.