摘要: # include <stdio.h># include <stdlib.h>struct complex{ float real; float imaginary; };void initcomplex(complex &c,float r1,float r2){ c.real=r1; c.ima 阅读全文
posted @ 2019-11-02 09:51 201821430014 阅读(329) 评论(0) 推荐(0) 编辑