La función real() se define en el archivo de encabezado complejo . La función real() se usa para encontrar la parte real del número complejo.
Sintaxis:
template<class T> T real(const complex<T>& z);
Parámetro: Este método toma un parámetro obligatorio z: que representa el número complejo dado.
Devolución: Devuelve la parte real del número complejo especificado.
Los siguientes programas ilustran la función anterior: –
Ejemplo 1:-
// C++ program to demonstrate // example of real() function. #include <bits/stdC++.h> using namespace std; // driver function int main() { // defines the complex number: (20.3 + 4.9i) complex<double> realpart(20.3, 4.9); // print the complex number cout << "Complex Number = " << realpart << endl; // prints the real part using the real function cout << "Real part of the complex number is =" << real(realpart) << endl; return 0; }
Producción:
Complex Number = (20.3, 4.9) Real part of the complex number is =20.3
Ejemplo 2:-
// C++ program to demonstrate // example of real() function. #include <bits/stdC++.h> using namespace std; // driver function int main() { // defines the complex number: (2 + 2i) complex<double> realpart(2, 2); // print the complex number cout << "Complex Number = " << realpart << endl; // prints the real part using the real function cout << "Real part of the complex number is =" << real(realpart) << endl; return 0; }
Producción:
Complex Number = (2, 2) Real part of the complex number is =2
Publicación traducida automáticamente
Artículo escrito por bansal_rtk_ y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA