flowchart
Please support our Computer Science advertiser: Learn about neural networks and artificial intelligence.
![]() |
A soft-drink manufacturer produces several flavors of drink—for example, cola, orange, and lemon. Additionally, each flavor has several versions such as regular, diet, and caffeine-free. The manufacturer operates factories in several states.
Assume you have input records that list version, flavor, yearly production in gallons, and state (for example: Regular Cola 5000 Kansas). The records have been sorted in alphabetical order by version within flavor within state. Design the report that lists each version and flavor, with minor total production figures for each flavor and major total production figures for each state.
I am in need of a flowchart that will work for this scenario. Can anyone give me an example?
Assume you have input records that list version, flavor, yearly production in gallons, and state (for example: Regular Cola 5000 Kansas). The records have been sorted in alphabetical order by version within flavor within state. Design the report that lists each version and flavor, with minor total production figures for each flavor and major total production figures for each state.
I am in need of a flowchart that will work for this scenario. Can anyone give me an example?
>I just need an example to follow because I am not sure where to start.
You've baffled me. I can't imagine how you could not know where to start. Have you never seen a flowchart before? That's about the only way you could reach the stage of complete incompetence without actually being incompetent.
Why not start by printing a report of all the records? That's a straightforward loop, and strikes me as a fantastic bare minimum for your flowchart. Here's some pseudocode:
From there you can build up to the requirements. This is called incremental design, and it's most effective when you're prototyping (ie. you don't really know how the end result will look and just want to throw ideas around). The intermediate stages don't have to solve the problem, they can solve a part of the problem, or even a part of a part of the problem.
You've baffled me. I can't imagine how you could not know where to start. Have you never seen a flowchart before? That's about the only way you could reach the stage of complete incompetence without actually being incompetent.
Why not start by printing a report of all the records? That's a straightforward loop, and strikes me as a fantastic bare minimum for your flowchart. Here's some pseudocode:
while more records do load next record print record loop
I'm here to prove you wrong.
Am I doing any better with this and can you critique it for me please?
This is all new to me...My instructor is not teaching us properly and plenty of other students are having the same problems trying to understand what is the assignment is.
This is all new to me...My instructor is not teaching us properly and plenty of other students are having the same problems trying to understand what is the assignment is.
•
•
•
•
>I just need an example to follow because I am not sure where to start.
You've baffled me. I can't imagine how you could not know where to start. Have you never seen a flowchart before? That's about the only way you could reach the stage of complete incompetence without actually being incompetent.
Why not start by printing a report of all the records? That's a straightforward loop, and strikes me as a fantastic bare minimum for your flowchart. Here's some pseudocode:
From there you can build up to the requirements. This is called incremental design, and it's most effective when you're prototyping (ie. you don't really know how the end result will look and just want to throw ideas around). The intermediate stages don't have to solve the problem, they can solve a part of the problem, or even a part of a part of the problem.while more records do load next record print record loop
•
•
•
•
A soft-drink manufacturer produces several flavors of drink—for example, cola, orange, and lemon. Additionally, each flavor has several versions such as regular, diet, and caffeine-free. The manufacturer operates factories in several states.
Assume you have input records that list version, flavor, yearly production in gallons, and state (for example: Regular Cola 5000 Kansas). The records have been sorted in alphabetical order by version within flavor within state. Design the report that lists each version and flavor, with minor total production figures for each flavor and major total production figures for each state.
I am in need of a flowchart that will work for this scenario. Can anyone give me an example?
How is this chart and does it work properly?
![]() |
Similar Threads
Other Threads in the Computer Science Forum
- need help with my flowchart homework (Computer Science)
- System flowchart (Computer Science)
- pls check flowchart for errors/inefficiencies (C)
- Trouble with figuring out the flowchart to pseudocode problem (Computer Science)
Other Threads in the Computer Science Forum
- Previous Thread: Flowchart for a census
- Next Thread: Need Help with Array's
•
•
•
•
Views: 1215 | Replies: 5 | Currently Viewing: 1 (0 members and 1 guests)






Linear Mode