complex
類別可以表示
並控制幾個複數操作。讓我們來看看如何表示和控制
顯示複數。
如前所述,複數由實部和虛部兩部分組成。
顯示實部我們使用real()函數,使用imag()函數來顯示 給定複數的虛部。在下一個例子中,我們取一個複數 number object, 初始化它,然後顯示數字的實部和虛部 分別。//displaying the imaginary part only complex<double> c; cout << imag(c) << endl;
拿一個新的複數物件。
使用'a. ib'表示法為物件賦值。
使用imag()函數顯示複數值的虛部。
#include <iostream> #include <complex> using namespace std; //displays the imaginary part of the complex number void display(complex <double> c){ cout << "The imaginary part of the complex number is: "; cout << imag(c) << endl; } //initializing the complex number complex<double> solve( double real, double img ){ complex<double> cno(real, img); return cno; } int main(){ complex<double> cno = 10.0 + 11i; //displaying the complex number cout << "The complex number is: " << real(cno) << '+' << imag(cno) << 'i' << endl; display(cno); return 0; }
The complex number is: 10+11i The imaginary part of the complex number is: 11
要注意的是,imag()函數只接受複數作為輸入,並且
返回所提供複數的虛部。輸出值為
複數物件的模板參數。
對於科學領域廣泛的許多不同操作,複雜的
numbers are required. An interface for representing complex numbers is provided by the C 複數類,它是頭檔以上是取得給定複數的虛部的C++程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!