Question: in JAVA We need to write a program to work with complex numbers. Complex numbers have the form: Re + Im * i Where: Re
in JAVA
We need to write a program to work with complex numbers. Complex numbers have the form: Re + Im * i Where: Re is the real part, Im is the imaginary part, and i= V-1 1. Create a class called Complex and define the fields. (3 points) 2. Use floating point variables to represent the private data of the class. (1 point) 3. Provide a constructor method that enables an object of this class to be initialized using input from the user (one input for real and one input for imaginary each on a separate line). (5 points) 4. Provide a no argument constructor with default value (0) if the user chooses not to enter values. (1 points) Assume that the user will enter only numerical values (no need to check for the correctness of the inputs). Good Luck
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
