Finding Square Roots - CodeChef Solution

Hello coders, today we will be solving Finding Square Roots CodeChef Solution whose Problem code is FSQRT. In olden days finding square roots seemed t

Hello coders, today we will be solving Finding Square Roots CodeChef Solution whose Problem code is FSQRT.

Finding Square Roots - CodeChef Solution

Problem

In olden days finding square roots seemed to be difficult but nowadays it can be easily done using in-built functions available across many languages .

Assume that you happen to hear the above words and you want to give a try in finding the square root of any given integer using in-built functions. So here's your chance.

Input

The first line of the input contains an integer T, the number of test cases. T lines follow. Each line contains an integer N whose square root needs to be computed.

Output

For each line of the input, output the square root of the input integer, rounded down to the nearest integer, in a new line.

Constraints

  • 1 <= T <= 20
  • 1 <= N <= 10000

Input:

3
10
5
10000

Output:

3
2
100

Solution - Finding Square Roots- CodeChef Solution 

Python 3

#Solution Provided by Sloth Coders
T = int(input())
while T > 0:
   n = int(input())
   sqrt = n ** 0.5
   sqrt_root = round(sqrt)
   print(sqrt_root)
   T = T - 1

Disclaimer: The above Problem (Finding Square Roots) is generated by CodeChef but the Solution is provided by Sloth Coders.

Happy Coding !!

A Sloth Who loves to Code

Also Read:

Sloth Coders is a Learning Platform for Coders, Programmers and Developers to learn from the basics to advance of Coding of different langauges(python, Java, Javascript and many more).

Post a Comment