Question- 1 Given a "Complex" class with all the standard methods for complex numbers, design the static method below to find and return the smallest complex number.
public static Complex getMin (Complex [ ] numbers);
My teacher says we do not need to know the Complex class and that it's a VERY short program using compareTo
You have to design the static method to find and return the smallest complex number.