Square, Cube and Square Root of a Number
Problem : Create a flow chart for a program that asks a user to input a
number, it reads the number and then caluclates the square, cube and square
root of that number.The program should also display the number and its square,
cube, and square root once they are calculated.
Algorithm :
- Start
- Ask user for a number
- Input the number
- find the square of the number
- find the cube of the number
- find the square root of the number
- display the number and its square
- display the number and its cube
- display the number and its square root
- Stop
Flowchart :