package class7_2_Complex; // MSOE. Dr. Yoder. 19 October 2015. public class ComplexDriver { public static void main(String[] args) { int real = 8; int imag = 6; new Complex(real,imag); Complex len5; real = 3; imag = 4; len5 = new Complex(real, imag); } }