i have a user input 'n' and i am finding the square root. Which i know is math.sqrt(n), but i need to make the program continue find the square root until it is less than 2. also return to the user how many times the program ran to find the root less than 2 using a counter. I am using python.
So far:
import math
root = 0
n = input('Enter a number greater than 2 for its root: ')
square_root = math.sqrt(n)
print 'The square root of', n, 'is', square_root
keep_going = 'y'
while keep_going == 'y':
while math.sqrt(n) > 2:
root = root + 1