码迷,mamicode.com
首页 > 其他好文 > 详细

计算两个复数之积

时间:2020-01-17 13:55:22      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:ref   col   div   problem   http   ems   pre   struct   set   

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 }

计算两个复数之积

标签:ref   col   div   problem   http   ems   pre   struct   set   

原文地址:https://www.cnblogs.com/2018jason/p/12205178.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!