1// State this in the class that you have created...
2package assignment1;
3public class myClass
4{
5 ...
6
7public Complex()
8{return....}
9
10 ...
11}
12
13
14//Import this class then in another class/java file that you have written
15import assignment1.myClass;
16