實驗9-4 計算兩個複數之積 (15 分)
本題要求實現乙個計算複數之積的簡單函式。
函式介面定義:
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()
{struct complex product, x, y;
scanf("%d%d%d%d", &x.real, &x.imag, &y.real, &y.imag);
product = multiply(x, y);
printf("(%d+%di) * (%d+%di) = %d + %di\n",
x.real, x.imag, y.real, y.imag, product.real, product.imag);
return 0;
6 1 計算兩個複數之積 15 分
6 1 計算兩個複數之積 15 分 本題要求實現乙個計算複數之積的簡單函式。函式介面定義 struct complex multiply struct complex x,struct complex y 其中struct complex是複數結構體,其定義如下 struct complex 裁判測...
6 1 計算兩個複數之積 (10 分)
6 1 計算兩個複數之積 10 分 本題要求實現乙個計算複數之積的簡單函式。函式介面定義 struct complex multiply struct complex x,struct complex y 其中struct complex是複數結構體,其定義如下 struct complex 裁判測...
實驗5 1 使用函式計算兩個複數之積 10分
題目描述 若兩個複數分別為 c 1 x 1 y 1 i和c 2 x 2 y 2 i,則它們的乘積為 c 1 c 2 x 1 x 2 y 1 y 2 x 1 y 2 x 2 y 1 i。本題要求實現乙個函式計算兩個複數之積。函式介面定義 double result real,result imag v...