所以我的程序制作了一个随机(x,y)
数组,我想做的是制作x
一个实数和y
虚数并将它们相加:我的主程序
#include "complx.h"
int main(){
const int n = 2;
Complex a[n];
getData(a,n);
printArray(a,n);
isort(a,n);
printArray(a,n);
complex_sum(a,n);
return 0;
}
它还打印和排列数组,但我感兴趣的是如何添加数组,例如我会使用 4 个数组(x,y)(x,y)(x,y)(x,y)
。
这就是我获得随机数的方式
void getData(Complex a[],int n){
int i;
srand(time(0)); //If comment this out, get same sequence with each run.
for(i=0; i<n; i++){
a[i].x = rand()%3; //3 and 10 are just for testing isort
a[i].y = rand()%10;
}
return;
}
这就是我尝试添加它的方式:
void complex_sum(Complex a[], int n){
for (int i=0; i<n; i++)
cout<<"("<<a[i].x+a[i].x<<")";
cout<<endl;
return;
我被困在如何添加(x,y)(x,y)= x+yi
谢谢