10 lines
168 B
C++
10 lines
168 B
C++
#include <complex.h>
|
|
|
|
void main( void ) {
|
|
|
|
Complex a (24, 27);
|
|
|
|
cout << "The inverse hyperbolic tangent of " << a << " = "
|
|
<< atanh( a ) << endl;
|
|
}
|