+ 1
How to find (square root of an integer?)
like how do i code (in python) square root of 49=7?
7 Respostas
+ 5
import math
print(math.sqrt(49))
+ 5
print(49 ** (0.5))
+ 3
In which language?
Should it calculated without build in math function?
+ 3
Asap?????
+ 2
in python
yes
+ 1
import math
a=9
b=math.sqrt(a)
print(b)
0
Try print(49**(0.5))