//intle kompleks + public static kompleks operator +(kompleks k1, int sayi) { kompleks k3 = new kompleks(); k3.Re = k1.Re + sayi; k3.Im = k1.Im + sayi; return(k3); }
// oparatör / public static kompleks operator /(kompleks k1, kompleks k2) { double a = k1.Re, b = k1.Im, c = k2.Re, d = k2.Im; kompleks k3 = new kompleks(); k3.Re = ((a * c) + (b * d)) / ((c * c) + (d * d)); k3.Im = (((b * c) - (a * d)) / ((c * c) + (d * d))); return(k3); }