> 其他 >
C语言写出一个函数,用来求两个复数的和
人气:163 ℃ 时间:2020-02-03 04:18:49
解答
struct complex{float rmz; //实部float lmz;//虚部 };//产生一个复数.complex getAComplex(float a,float b){complex Node=new complex();Node.rmz=a; Node.lmz=b;return Node;}//两个复数求和co...
推荐
猜你喜欢
© 2024 79432.Com All Rights Reserved.
电脑版|手机版