Question: Use a while loop for this question . Use java. Write a program to print the square roots of the first 25 odd positive integers.
Use a while loop for this 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 Math.sqrt0 to get the square roots of the numbers. E.g., if x is a variable, Math.sqrt(x) will return x's 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.7 2.2 Etc Use System.out.printfO 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
