abs(-5) - abs(-7) = 5 - 7 = -2
abs(-1e-1) + abs(-2e-2) =abs(-0.1) + abs(-0.02) =0.1 + 0.02 =0.12
sqrt(0.0064) =0.08
sqrt(pow(2.7, 2)) =sqrt(2.72) =2.7
round(3.499) =3
pow(16, 0.25) = fourth root of 16 = 2.0
pow(4, -2) = 1 / 42 = 1 /16 = 0.0625
round(1.49 + 0.1) = round(1.59) = 2
round(1.49) + 0.1 = 1 + 0.1 = 1.1
|