how to find a number as it is perfect square or not a perfect square
Answers
Answered by
3
Check if given number is perfect square
1.Take the square root of the number.
2.Take floor/ceil/round of the square root which we got in step 1.
3.Subtract value we got in step 2 from the square root.
4.If the output of step 3 is 0 then the number is perfect square else not.
Answered by
0
Check if given number is perfect square
Take the square root of the number.
Take floor/ceil/round of the square root which we got in step 1.
Subtract value we got in step 2 from the square root.
If the output of step 3 is 0 then the number is perfect square else not.
Take the square root of the number.
Take floor/ceil/round of the square root which we got in step 1.
Subtract value we got in step 2 from the square root.
If the output of step 3 is 0 then the number is perfect square else not.
Similar questions