Ini contoh program untuk operator * menggunakan friend...
Matrices operator+(Matrices z, Matrices x){
Matrices y;
y.row=z.row;
y.col=z.col;
for(int i=0; i<y.row; i++){
for(int j=0; j<y.col; j++){
y.value[i][j]=z.value[i][j]+x.value[i][j];
}
}
return y;
}
*jangan di copas yah.. hehehe...
*dilihat trus di pelajari aja.. oke. oke..
0 komentar:
Posting Komentar