Can someone review my flowchart for a simple program?

0
5
Asked By CuriousCoder42 On

I'm working on a project for my Computational Thinking & Programming Logic class, and I need some help reviewing my flowchart. The assignment asks me to create a flowchart that represents a program allowing a user to input two numbers, adds them together, and displays the result. Since I can't upload a picture directly, here's the textual version of my flowchart:

- Start: Program begins (Oval Shape)
- Input 1: User enters the first number (num1) (Parallelogram Shape)
- Input 2: User enters the second number (num2) (Parallelogram Shape)
- Process: The program calculates Sum = num1 + num2 (Rectangle)
- Output: The program displays the Sum (Parallelogram Shape)
- End: Program finishes (Oval Shape)

2 Answers

Answered By FlowMaster99 On

If you're looking for a way to share your flowchart, consider using an image hosting service like Imgur or IBB. Alternatively, you could use AscIIFlow to create your flowchart and post it as formatted code here. Your description of the flow looks good overall!

Answered By CodeCritiqueGal On

One thing to keep in mind is to prompt the user for input right when the program starts. That helps clarify what they need to do. However, if the assignment doesn't explicitly ask for it, I get why you might leave it out, especially for simpler tasks. Just make sure to follow the instructions given!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.