Question: class Complex { private double real; private double imaginary; public Complex ( double r, double i ) { real = r; imaginary = i; }

class Complex { private double real; private double imaginary; public Complex ( double r, double i ) { real = r; imaginary = i; } { public Complex ( double r ) real = r; imaginary 0; } public double getReal () { return real; } + public String toString() { if (Math.abs (imaginary) > 0) { if (imaginary
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
