Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2
import java.util.
Scanner;
class complex { Double real; Double imag;
public void getdata(Scanner sc) {
System.out.println(" Enter the real part of the complex number :"); this.real = sc.nextDouble(); System.out.println(" Enter the imaginary part of the complex number :"); this.imag = sc.nextDouble(); }