6-1 計算兩個複數之積 (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()
結構體陣列做函式呼叫的典型用法。
6 1 計算兩個複數之積 (10 分)
6 1 計算兩個複數之積 10 分 本題要求實現乙個計算複數之積的簡單函式。函式介面定義 struct complex multiply struct complex x,struct complex y 其中struct complex是複數結構體,其定義如下 struct complex 裁判測...
實驗9 4 計算兩個複數之積 (15 分)
實驗9 4 計算兩個複數之積 15 分 本題要求實現乙個計算複數之積的簡單函式。函式介面定義 struct complex multiply struct complex x,struct complex y 其中struct complex是複數結構體,其定義如下 struct complex 裁...
實驗9 結構程式設計 6 1 計算兩個複數之積
本題要求實現乙個計算複數之積的簡單函式。函式介面定義 struct complex multiply struct complex x,struct complex y 其中struct complex是複數結構體,其定義如下 struct complex 裁判測試程式樣例 include stru...