Answer:
import math
x = float(input())
y = float(input())
z = float(input())
value1 = pow(x, z)
value2 = pow(x, pow(y, z))
value3 = abs(x - y)
value4 = math.sqrt(pow(x, z))
print('{:.2f} {:.2f} {:.2f} {:.2f}'.format(value1, value2, value3, value4))
Step-by-step explanation:
*The code is in Python.
Ask the user to enter x, y, and z as floating point numbers
Calculate the each expression using math functions, pow - calculates the power, abs - calculates the absolute value, and sqrt - calculates the square root
Print the values in required format
Note that the given output is not correct. It must be:
172.47 361.66 3.50 13.13