Flowgorithm
In-game article clicks load inline without leaving the challenge.
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. Flowgorithm was created at Sacramento State University.
Origin of name
The name is a portmanteau of "flowchart" and "algorithm".
Supported programming languages
Flowgorithm can interactively translate flowchart programs into source code written in other programming languages. As the user steps through their flowchart, the related code in the translated program is automatically highlighted. The following programming languages are supported:
- C++
- C#
- Delphi
- Groovy
- Java
- JavaScript
- Kotlin
- Lua
- Nim
- Perl
- PHP
- PowerShell
- Python
- QBasic
- Ruby
- Swift 2 & 3
- TypeScript
- Visual Basic for Applications
- Visual Basic .NET
Multilingual support
Flowgorithm supports the following languages:
- Afrikaans
- Arabic
- Catalan
- Chinese
- Croatian
- Czech
- Dutch
- English
- Farsi
- French
- Galician
- German
- Hebrew
- Hungarian
- Indonesian
- Italian
- Japanese
- Korean
- Latvian
- Malay
- Mongolian
- Polish
- Portuguese
- Romanian
- Russian
- Spanish
- Swedish
- Slovenian
- Tamil
- Thai
- Turkish
- Ukrainian
Graphical 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.
- include <iostream>
using namespace std; // Function to calculate percentage float calculatePercentage(int marks[], int size) {
} // Function to check admission eligibility void checkAdmission(float percentage) {
else if(percentage >= 60) {
} // Function using pointer to display student data void displayStudent(string *name, float *percentage) {
} int main() {
cout << "Enter number of students: ";
int marks[5];
// Calculate percentage
// Display result using pointers
}
See also
Other educational programming languages include:
- Alice
- DRAKON
- LARP
- Microsoft Small Basic
- Raptor
- Scratch Blockly, interface used by Scratch to make the code blocks
- Visual Logic