28. Convert the following pseudocode to C++ code. Be sure to define the appropriate variables.
Store 172.5 in the force variable.
Store 27.5 in the area variable.
Divide area by force and store the result in the pressure variable.
Display the contents of the pressure variable.
if anyone can teach one of the steps would be great.
The force variable is currently storing nothing while 27.2/172.5 belong to no variable. You should get an error for that. So solve this problem all you have to do is set pressure = area / force.
Like this :