Problem : Write a flow chart for a program that asks a user for a number, reads it, and tells you if it is positive or negative. Be sure to include the original value in the output.

    Algorithm :
  1. Start
  2. Ask user for a number
  3. Input the number
  4. ask if the number is greater than 0
  5. if the answer is yes
  6. display the number is positive
  7. if the answer is no
  8. display the number is negative
  9. Stop

Flowchart :
Untitled 2