Answer:
The program is as follows:
float x
float y
float z
x = Get next input
y = Get next input
z = Get next input
Put RaiseToPower(x,y) to output with 5 decimal places
Put "\\" to output
Put RaiseToPower (x,RaiseToPower (y,z)) to output with 5 decimal places
Put "\\" to output
Put AbsoluteValue(x) to output with 5 decimal places
Put "\\" to output
Put SquareRoot(RaiseToPower (x * y,z)) to output with 5 decimal places
Step-by-step explanation:
This declares all variables
float x
float y
float z
This gets input for all variables
x = Get next input
y = Get next input
z = Get next input
This prints x^y
Put RaiseToPower(x,y) to output with 5 decimal places
This prints a new line
Put "\\" to output
This prints x^(y^z)
Put RaiseToPower (x,RaiseToPower (y,z)) to output with 5 decimal places
This prints a new line
Put "\\" to output
This prints |x|
Put AbsoluteValue(x) to output with 5 decimal places
This prints a new line
Put "\\" to output
This prints sqrt((x * y)^z)
Put SquareRoot(RaiseToPower (x * y,z)) to output with 5 decimal places