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 Shapes
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
Multimedia
Introduction
Functions
Conditions
Loops
Arrays
Debugging
Activities
- Install Flowgorithm
- Windows
- Install Flowgorithm.
- macOS (10.14 and earlier. Wine does not currently run on macOS 10.15)
- Install XQuartz.
- Install Wine.
- Download Flowgorithm.
- Review GHacks: Extract MSI Files.
- Extract
Flowgorithm.exe
fromFlowgorithm Setup.msi
. - Run Wine Stable.
- Run
wine Flowgorithm.exe
in the Wine terminal.
- Windows
- Complete the Flowgorithm: Tutorial.
- Review Flowgorithm: Documentation.
- 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
- 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
References
This article is issued from Wikiversity. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.