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 :
  1. Start
  2. Ask user for a number
  3. Input the number
  4. find the square of the number
  5. find the cube of the number
  6. find the square root of the number
  7. display the number and its square
  8. display the number and its cube
  9. display the number and its square root
  10. Stop

Flowchart :
Untitled 2