University Assignment2
University Assignment2
Programming Fundamentals
History of Flowcharts.
Frank Gilberth introduced flowcharts in 1921, and they were called “Process Flow
Charts” at the beginning. Allan H. Mogensen is credited with training business people on
What is a Flowchart
A flowchart is a visual representation of a process or algorithm. It uses different
shapes and symbols to represent various steps or actions in a sequence.
Flowcharts are commonly used in software development, business processes,
Flow line
Indicates the flow of logic by connecting symbols.
Terminal(Stop/Start)
Represents the start and the end of a flowchart.
Input/Output
Used for input and output operation.
Processing
Used for arithmetic operations and data-manipulations.
Decision
Used for decision making between two or more alternatives.
On-page Connector
Used to join different flowline
Off-page Connector
Used to connect the flowchart portion on a different page.
Predefined Process/Function
Represents a group of statements performing one processing task.
Examples of flowcharts in programming 1. Add
two numbers entered by the user.
2. Find the largest among three different numbers entered by the user.
3.Draw a flow chart of if statement.
scored "<<percent<<"%"<<endl; if
(percent>=40)
getch();
return 0;