本題要求實現乙個計算複數之積的簡單函式。
函式介面定義:
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 計算兩個複數之積 (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 裁判測...
計算兩個複數之和 差
2014軟體技術2班 作 者 b36 完成日期 2014年 12 月 8 日 版 本 號 v1.0 問題描述 建立乙個程式能計算兩個複數之和 差 輸入描述 任意輸入a,b.根據程式算出 並輸出 輸出結果 using system using system.collections.generic us...