FLOWCHARTS
In simple ways flowchart is nothing but Diagramatic representation of Algorithm. Flowchart shows steps in sequential order and is widely used in presenting the flow of algorithms, workflow or processes.
Typically, a flowchart shows the steps as boxes of various kinds, and their order by connecting them with arrows. Flowchart is tool for representing algorithms and programming logic but had extended to use in all other kinds of processes.
Some Flowchart Symbols
Example
Below is th flowchart is for the following algorithm for calculating profit or loss in business
1, Read Buy value of ITEM
2. Read Sell value of ITEM
3. If sell value is greater than buy value then 7
4. Calculate Loss= Buy-Sell
5. Print Loss
6. Goto 9
7. Calculate Profit=Sell-Buy
8. Print Profit
9. End
Related Video on Youtube
Comments
Post a Comment