Section 2.2.3 FloatingPoint Data Types 20541: Declare a float variable named price. float price; 20542: Declare a double variable named netWeight. double netWeight; 20511: Declare a variable x, suitable for storing values like 3.14159 and 6.02E23. float x; 20980: Write a single statement that will print the message “first is “ followed by the value of first, and then a space, followed by “second = “, followed by the value of second. Print everything on one line and go to a new line after printing. Assume that first has already been declared as a double and that second has been declared as an int. Assume also that the variables have already been given values. System.out.println("first is " + first + " second = " + second + "\n");