Texts: (JAVA) Write a complete program implementing the following tasks:
1) Declare two double variables foot and meter.
2) By using the console window input, prompt the user to enter the foot value, read the value from the user, and store it in the variable foot.
3) Compute the meter value according to the foot value and assign the result to the variable meter using the following formula: meter = 0.305 * foot
4) Display the result of meter on the console window. Your code should print the following statements:
Please enter the value of feet: 5
5.0 ft converted to meters is 1.525 m