Skip to content

Latest commit

 

History

History
95 lines (67 loc) · 1.23 KB

README.md

File metadata and controls

95 lines (67 loc) · 1.23 KB

Flowchart (ISO 5807)

{:.no_toc}

* TOC {:toc}

The goal

Flowcharts can be used to plan a program. I will try to emulate the norm ISO 5807.

Questions to David Rotermund

Terminal

Beginning of a program or function

{% raw %}

    flowchart LR
      id1([Start])
  

{% endraw %}

Ending of a program or function

{% raw %}

    flowchart LR
      id1([Stop])
  

{% endraw %}

Process

For arithmetic operations and data-manipulations.

{% raw %}

    flowchart LR
      id1(Process)
  

{% endraw %}

Decision

{% raw %}

    flowchart LR
      id1{Decision}
  

{% endraw %}

Input/Output

{% raw %}

    flowchart LR
      id1[/Input/]
  

{% endraw %}

Function

{% raw %}

    flowchart LR
      id1[[Function]]
  

{% endraw %}

Initialization

{% raw %}

    flowchart LR
      id1{{Initialization}}
  

{% endraw %}

File

{% raw %}

    flowchart LR
      id1[(File)]
  

{% endraw %}