Flow chart symbols: Difference between revisions

From Master of Neuroscience Wiki
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{#mermaid:sequenceDiagram
 
participant Alice
Flowcharts can be used to plan a program. I will try to emulate the norm ISO 5807.
participant Bob
 
  Alice->John: Hello John, how are you?
Questions to [mailto:davrot@uni-bremen.de David Rotermund]
  loop Healthcheck
 
      John->John: Fight against hypochondria
== Terminal ==
  end
 
  Note right of John: Rational thoughts <br/>prevail...
=== Beginning of a program or function ===
     John-->Alice: Great!
{{#mermaid:
     John->Bob: How about you?
flowchart LR
     Bob-->John: Jolly good!
id1([Start])
}}
 
=== Ending of a program or function ===
{{#mermaid:
    flowchart LR
      id1([Stop])
}}
 
== Process ==
For arithmetic operations and data-manipulations.
 
{{#mermaid:
    flowchart LR
      id1(Process)
}}
 
== Decision ==
{{#mermaid:
    flowchart LR
      id1{Decision}
}}
 
== Input/Output ==
{{#mermaid:
     flowchart LR
      id1[/Input/]
}}
 
== Function ==
{{#mermaid:
     flowchart LR
      id1[[Function]]
}}
 
== Initialization ==
{{#mermaid:
     flowchart LR
    id1{{Initialization}}
}}
 
== File ==
{{#mermaid:
    flowchart LR
      id1[(File)]
}}
}}

Latest revision as of 08:31, 21 October 2025

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

Ending of a program or function

Process

For arithmetic operations and data-manipulations.

Decision

Input/Output

Function

Initialization

File