JAVA problem!! CodeQuotient
so, suppose I have a list of number-
6
36
16
9
20
1
11
and I want to find the square root of the above numbers in a way that the output shows as-
6.00
4.00
3.00
4.47
1.00
3.32
I want to know how we take a list of number as user input and perform square root operation on all the number and display the output
I tried using list but, I have no idea how to perform square root operation on the numbers inside the list separately
**Note - the program doesn't use list!!
...it seems that we cannot use list to solve this problems as using list adds square brackets[] to the output and i need the output in a vertical order without brackets as shown in the image below**