Flowgorithm is a graphical authoring tool which allows users to write and execute programs using flowcharts. The approach is designed to emphasize the algorithm rather than the syntax of a specific programming language. The flowchart can be converted to several major programming languages.[1]

Flowgorithm Logo
Flowgorithm Logo
Flowgorithm Editor
Flowgorithm Editor

Flowgorithm Shapes edit

Flowgorithm combines the classic flowchart symbols and those used by SDL diagrams. The color of each shape is shared by the associated generated code and the console window. The colors can be changed to several built-in themes.[2] See Wikipedia:Flowchart#Common_Shapes for an explanation of common flowchart shapes and their usage.

 

Readings edit

  1. Wikipedia: Flowgorithm
  2. ResearchGate: Capabilities and Features of Raptor, Visual Logic, and Flowgorithm for Program Logic and Design

Multimedia edit

Introduction edit

  1. YouTube: First Program in Flowgorithm
  2. Youtube: How to use Flowgorithm software
  3. YouTube: Flowgorithm: Declare Assign and Output a Variable
  4. YouTube: Basic Maths - Flowgorithm
  5. YouTube: Sample Flowgorithm Video
  6. YouTube: User Input Flowgorithm
  7. YouTube: Flowgorithm Basics

Functions edit

  1. YouTube: Flowgorithm Functions Part 1
  2. YouTube: Flowgorithm Functions Part 2
  3. YouTube: Flowgorithm - A Little Loopy
  4. YouTube: Functions in Flowgorithm
  5. YouTube: Modules in Flowgorithm

Conditions edit

  1. YouTube: Flowgorithm If Statement
  2. YouTube: Flowgorithm Selection with Error
  3. YouTube: Flowgorithm - Guess The Number
  4. YouTube: Flowgorithm - Odd or Even

Loops edit

  1. YouTube: While Loop Flowgorithm
  2. YouTube: For Loop Flowgorithm

Arrays edit

  1. YouTube: Flowgorithm Using Arrays
  2. YouTube: Flowgorithm - Integer Arrays and Functions

Debugging edit

  1. YouTube: Flowgorithm - Debugging

Activities edit

  1. Install Flowgorithm
    • Windows
      1. Install Flowgorithm.
    • macOS (10.14 - 2018 and earlier. Wine does not currently run on macOS 10.15 - 2019 or later)
      1. Install XQuartz.
      2. Install Wine.
      3. Download Flowgorithm.
      4. Review GHacks: Extract MSI Files.
      5. Extract Flowgorithm.exe from Flowgorithm Setup.msi.
      6. Run Wine Stable.
      7. Run wine Flowgorithm.exe in the Wine terminal.
  2. Complete the Flowgorithm: Tutorial.
  3. Review Flowgorithm: Documentation.
  4. Create flowcharts and source code in Flowgorithm.
    • Add shapes to a new Flowgorithm file.
    • Use the Source Code Viewer option to view corresponding source code.

Key Terms edit

algorithm
A self-contained sequence of actions to be performed. Algorithms can perform calculation, data processing and automated reasoning tasks.[3]
Boolean data type
It can store either "true" or "false". These are the basis of decision making in a computer program.[4]
flowchart
A type of diagram that represents an algorithm, workflow or process, showing the steps as boxes of various kinds, and their order by connecting them with arrows.[5]
Integer data type
One of the most commonly used types in programming. An integer can store a positive or negative whole number, but can't store fractional values.[6]
Programming language
A formal language that specifies a set of instructions that can be used to produce various kinds of output.[7]
Real data type
Can store any number - both whole numbers and ones with fractional values. In many languages, this is called a "double" after the implementation standard known as "double-precision floating point".[8]
String data type
Used to store any textual data. This includes words, letters, or anything else you would send in a text message. In programming, the text is delimited with double quotes.[9]

See Also edit

References edit