add函数的功能是利用结构体变量求解两个复数之和,应在横线处填________。#include "stdio.h"struct complx{int real; int im; };struct complx add (struct complx za,struct complx zb) {struct complx w;w.real = za.real + zb.real;w.im = za.im + zb.im;return_______; }
add函数的功能是利用结构体变量求解两个复数之和,应在横线处填________。#include "stdio.h"struct complx{int real; int im; };struct complx add (struct complx za,struct complx zb) {struct complx w;w.real = za.real + zb.real;w.im = za.im + zb.im;return_______; }
发布时间:2025-03-10 05:59:24