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

2021-09-08 16:31:06 字數 602 閱讀 5808

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

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

函式介面定義:

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)

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

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

使用函式計算兩個複數之積 (10 分)

使用函式計算兩個複數之積 10 分 函式介面定義 double result real,result imag void complex prod double x1,double y1,double x2,double y2 其中使用者傳入的引數為兩個複數x1 y1i和x2 y2i 函式compl...

實驗9 結構程式設計 6 1 計算兩個複數之積

本題要求實現乙個計算複數之積的簡單函式。函式介面定義 struct complex multiply struct complex x,struct complex y 其中struct complex是複數結構體,其定義如下 struct complex 裁判測試程式樣例 include stru...