Question: its Java language . Please give me full code with following results. Thanks 1. For this part you need to use the floor method and

its Java language . Please give me full code with following results. Thanks
1. For this part you need to use the floor method and max methods in the Match class. Moreover, saying 54.0 is exclusive, it means that the double in the result can not be exactly 54.0, but it could be 53.9999 2. make a class which is FloorOrMax and create a main method in this class. In the main method, perform the following steps: A. Using the random method of the Math class, create a random floating-point number between 4.0(inclusive) and 54.0(exclusive) store it in a variable called myRand. B. Print out "The value is: [value]" is rounded to 2 decimal places and replace the [value] with myRand rounded here. 4 C. If the floor of myRand is even and greater than 15, floor it and print out result as an integer. D. If the floor of myRand is odd, print out the maximum value between myRand and the number 32. E. Otherwise, print out myRand as is.' Output: - The value is: 52.73 4 52 +
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
