定義成結(jié)構(gòu)體 實(shí)部和虛部分別定義成double,然后在自己定義運(yùn)算……

枝江網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、APP開(kāi)發(fā)、響應(yīng)式網(wǎng)站開(kāi)發(fā)等網(wǎng)站項(xiàng)目制作,到程序開(kāi)發(fā),運(yùn)營(yíng)維護(hù)。創(chuàng)新互聯(lián)成立于2013年到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來(lái)保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。
如果是C++的話,可以重載+、-、*、\操作符的方式
這個(gè)是一個(gè)列子,可以參考下
struct complex{
float rmz; //實(shí)部
float lmz;//虛部
};
//產(chǎn)生一個(gè)復(fù)數(shù).
complex getAComplex(float a,float b){
complex Node=new complex();
Node.rmz=a;
Node.lmz=b;
return Node;}
//兩個(gè)復(fù)數(shù)求和
complex addComplex(complex complex1,complex complex2)
{
complex Node=new complex();
Node.rmz=complex1.rmz+complex2.rmz;
Node.lmz=complex1.lmz+complex2.lmz;
return Node;
}
//求兩個(gè)復(fù)數(shù)的差
complex subComplex(complex complex1,complex complex2)
{
complex Node=new complex();
Node.rmz=complex1.rmz-complex2.rmz;
Node.lmz=complex1.lmz-complex2.lmz;
return Node;
}
//求兩個(gè)復(fù)數(shù)的積
complex productComplex(complex complex1,complex complex2)
{
complex Node=new complex();
Node.rmz=complex1.rmz*complex2.rmz-complex1.lmz*complex2.lmz;
Node.lmz=complex1.lmz*complex2.rmz+complex2.lmz*complex2.rmz;
return Node;
}
//求實(shí)部
float getComplexRmz(complex complex1)
{
return complex1.rmz;
}
//求虛部
float getComplexLmz(complex complex1)
{
return complex1.lmz;
}
用數(shù)組來(lái)表示復(fù)數(shù) float a[2],b[2],c[2],s[2];
讀取a、b
FILE *fp;
if((fp=fopen("f:\\a.txt","r+"))!=NULL)
{
fscanf("%f%f",a[0] , a[1] );
fscanf("%f%f",b[0] , b[1] );
fclose(fp);
}
相乘的函數(shù):
void mult(float a[2], float c[2], float result[2])
{
result[0] = a[0] * c[0] - a[1] * c[1] ;
result[1] = a[1] * c[0] + a[0] * c[1] ;
return;
}
調(diào)用:
mult(a, c, s);
1、首先打開(kāi)vc6.0, 新建一個(gè)項(xiàng)目。
2、添加stdio.h頭文件。
3、添加math.h頭文件。
4、添加main主函數(shù)。
5、定義結(jié)構(gòu)體z。
6、定義double類型val變量。
7、初始化z。
8、使用cabs函數(shù)。
9、使用printf打印信息。
10、運(yùn)行程序,看看結(jié)果。
C語(yǔ)言本身沒(méi)有復(fù)數(shù)這個(gè)數(shù)據(jù)類型,但是你可以自己定義:
typedef struct
{
double real; /* 實(shí)部 */
double imag; /* 虛部 */
}ComplexNumber;
然后你可以使用ComplexNumber來(lái)定義變量,然后用scanf("%f,%f", cn.real, cn.imag);這樣的語(yǔ)句來(lái)輸入復(fù)數(shù),還可以進(jìn)行其它任意操作。
網(wǎng)頁(yè)標(biāo)題:c語(yǔ)言讀取復(fù)數(shù)的函數(shù),c++輸入復(fù)數(shù)
網(wǎng)站路徑:http://chinadenli.net/article10/dsesedo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號(hào)、商城網(wǎng)站、做網(wǎng)站、軟件開(kāi)發(fā)、網(wǎng)站制作、虛擬主機(jī)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容