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 "\n" to output
Put RaiseToPower (x,RaiseToPower (y,z)) to output with 5 decimal places
Put "\n" to output
Put AbsoluteValue(x) to output with 5 decimal places
Put "\n" to output
Put SquareRoot(RaiseToPower (x * y,z)) to output with 5 decimal places
Explanation:
This declares all variables
<em>float x
</em>
<em>float y
</em>
<em>float z
</em>
This gets input for all variables
<em>x = Get next input
</em>
<em>y = Get next input
</em>
<em>z = Get next input
</em>
This prints x^y
Put RaiseToPower(x,y) to output with 5 decimal places
This prints a new line
Put "\n" 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 "\n" to output
This prints |x|
Put AbsoluteValue(x) to output with 5 decimal places
This prints a new line
Put "\n" to output
This prints sqrt((x * y)^z)
Put SquareRoot(RaiseToPower (x * y,z)) to output with 5 decimal places