Question: Write a program to print the square roots of the first 25 odd positive integers. Your output should be rounded to 1 decimal place. Use
Write a program to print the square roots of the first 25 odd positive integers. Your output should be rounded to 1 decimal place. Use Math.sqrt() to get the square roots of the numbers. E.g., if x is a variable, Math.sqrt(x) will return xs square root provided x is positive. You do not need to import the Math class. It is part of java.lang. The output should be displayed in a table format as follows: Value of x Square Root ======================= 1 1.1 3 1.7 5 2.2 Etc Use System.out.printf() to format the output and to control the spacing
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
