PTA 計算兩個複數之積(C語言)

2021-10-05 05:38:19 字數 526 閱讀 9425

本題要求實現乙個計算複數之積的簡單函式。

函式介面定義:

struct complex multiply(struct complex x, struct complex y);

其中struct complex是複數結構體,其定義如下:

struct complex;

裁判測試程式樣例:

#include

struct complex;

struct complex multiply(struct complex x, struct complex y);

int main()

/* 你的**將被嵌在這裡 */

輸入樣例:

3 4 5 6

輸出樣例:

(3+4i) * (5+6i) = -9 + 38i

struct complex multiply

(struct complex x,

struct complex y)

使用函式計算兩個複數之積

使用函式計算兩個複數之積 10 分 9 若兩個複數分別為 c 1 x1 y1i和c2 x2 y2i,則它們的乘積為 c1 c2 x1x2 y1y2 x1y2 x2y1 i。本題要求實現乙個函式計算兩個複數之積。函式介面定義 double result real,result imag void co...

6 1 計算兩個複數之積 (10 分)

6 1 計算兩個複數之積 10 分 本題要求實現乙個計算複數之積的簡單函式。函式介面定義 struct complex multiply struct complex x,struct complex y 其中struct complex是複數結構體,其定義如下 struct complex 裁判測...

6 1 計算兩個複數之積 15 分

6 1 計算兩個複數之積 15 分 本題要求實現乙個計算複數之積的簡單函式。函式介面定義 struct complex multiply struct complex x,struct complex y 其中struct complex是複數結構體,其定義如下 struct complex 裁判測...