-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
class Complex { | ||
double real; | ||
double imaginary; | ||
|
||
public Complex(double real, double imaginary) { | ||
this.real = real; | ||
this.imaginary = imaginary; | ||
} | ||
|
||
public Complex add(Complex other) { | ||
return new Complex(real + other.real, imaginary + other.imaginary); | ||
} | ||
|
||
public Complex multiply(Complex other) { | ||
double realPart = (real * other.real) - (imaginary * other.imaginary); | ||
double imaginaryPart = (real * other.imaginary) + (imaginary * other.real); | ||
return new Complex(realPart, imaginaryPart); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
if (imaginary < 0) { | ||
return real + " - " + Math.abs(imaginary) + "i"; | ||
} | ||
return real + " + " + imaginary + "i"; | ||
} | ||
|
||
public static void main(String[] args) { | ||
Complex c1 = new Complex(3, 2); | ||
Complex c2 = new Complex(1, 7); | ||
|
||
Complex sum = c1.add(c2); | ||
System.out.println("Sum: " + sum); | ||
|
||
Complex product = c1.multiply(c2); | ||
System.out.println("Product: " + product); | ||
} | ||
} |