Write the compare (int a) method to complete the following operations: -If the method parameter is less than 5, "number less than 5" will be displayed; -If the method parameter is greater than 5, "number greater than 5" will be displayed; -If the method parameter is equal to 5, "number equals 5" is displayed. requirement: The program should display text on the screen. The main method should not be called System.out.println Or System.out.print 。 The main method should call the compare method. The compare method must be void. The compare method should display text on the screen according to the task conditions.