计算两个复数之积

Posted jason2018

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算两个复数之积相关的知识,希望对你有一定的参考价值。

https://pintia.cn/problem-sets/12/problems/348

1 struct complex multiply(struct complex x, struct complex y)
2 {
3     struct complex ret;
4 
5     ret.real = x.real * y.real - x.imag * y.imag;
6     ret.imag = x.real * y.imag + x.imag * y.real;
7 
8     return ret;
9 }

以上是关于计算两个复数之积的主要内容,如果未能解决你的问题,请参考以下文章

[PTA]实验9-4 计算两个复数之积

习题9-2 计算两个复数之积 (15 分)

计算两个复数之积

用结构体函数计算两个复数的四则运算的程序分析、重难点和结论?

c语言,求任意一个整数各位数字之积

两个复数的乘积少于 3 次