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
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!
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
How To: Running Codex CLI on Windows with Azure OpenAI
Set Wordpress Featured Image Using Javascript
How To Fix PHP Random Being The Same
Why no WebP Support with Wordpress
Replace Wordpress Cron With Linux Cron
Customize Yoast Canonical URL Programmatically