Computer Science, asked by jg2050, 5 months ago

2.4 Code Practice: Question 1

Answers

Answered by esmemartinez0406
9

Answer:

import math

x=int(input("Enter a number: "))

print (math.sqrt(math.fabs(x)))

Explanation:

It might say error but when you check your code it will give you a 100 dont worry about that.

Answered by Vladpro
1

Answer:

import math

x = int(input("Enter a number: "))

print (math.sqrt(math.fabs(x)))

Explanation:

Similar questions