Practice Exercise 4.1.9: Max and Min Values points In this exercise, you will need to write a program that asks the user to enter different positive numbers. After each number is entered, print out which number is the maximum and which number is the minimum of the numbers they have entered so far. Stop asking for numbers when the user enters -1. Possible output Enter a number (-1 to quit): 100 Smallest so for 100 Largest # so far: 100 Enter a number ( 1 to quit): 4 Smallest so far: 4 Largest sofor: 100 Enter a number (-1 to quit): 25 Smallest so far: 4 Largest so far: 180 Enter a number (-1 to quit): 2 Smallest so far: 1 Largest so far: 100 Enter a number 1 to quit): Smallest so far: 1 Largest sofor: 200 Enter a number 1 to quit): ON My Section Practice bmitted 4.1.9: Max and Min Values 1 import java.util.Scanner; 2 3 public class MaxMin 4-{ public static void main(String[] args) 6 { 7 // Your code goes here! 8 // It is useful to plan out your steps before you get started! 9 3 10 ) 11