Flowgorithm

Flowgorithm
ParadigmStructured, imperative
Designed byDevin Cook
First appeared2014
Stable release
4.5.0 / October 8, 2024
Typing disciplineStatic, strong, safe
Implementation languageC#
OSWindows
LicenseFreeware
Filename extensions.fprg
Websiteflowgorithm.org
Influenced by
Flowcharts

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.[1] The flowchart can be converted to several major programming languages. Flowgorithm was created at Sacramento State University.[2]

Origin of name

The name is a portmanteau of "flowchart" and "algorithm".[3]

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:[4]

Multilingual support

Flowgorithm supports the following languages:[5]

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.

  1. include <iostream>

using namespace std; // Function to calculate percentage float calculatePercentage(int marks[], int size) {

   int sum = 0;
   for(int i = 0; i < size; i++) {
       sum += marks[i];
   }
   return (float)sum / size;

} // Function to check admission eligibility void checkAdmission(float percentage) {

   if(percentage >= 80) {
       cout << "Admission in Computer Science\n";
   }
   else if(percentage >= 70) {
       cout << "Admission in Software Engineering\n";
   }

else if(percentage >= 60) {

       cout << "Admission in Information Technology\n";
   }
   else if(percentage >= 50) {
       cout << "Admission in Business Studies\n";
   }
   else {
       cout << "Sorry! Not eligible for admission\n";
   }

} // Function using pointer to display student data void displayStudent(string *name, float *percentage) {

   cout << "\n--- Student Result ---\n";
   cout << "Name: " << *name << endl;
   cout << "Percentage: " << *percentage << "%" << endl;

} int main() {

   int numStudents;

cout << "Enter number of students: ";

   cin >> numStudents;
string names[numStudents];
   float percentages[numStudents];
   for(int i = 0; i < numStudents; i++) {
       cout << "\nEnter name of student " << i+1 << ": ";
       cin >> names[i];

int marks[5];

       cout << "Enter marks of 5 subjects:\n";
for(int j = 0; j < 5; j++) {
           cout << "Subject " << j+1 << ": ";
           cin >> marks[j];
       }

// Calculate percentage

       percentages[i] = calculatePercentage(marks, 5);

// Display result using pointers

       displayStudent(&names[i], &percentages[i]);
 // Check admission
       checkAdmission(percentages[i]);
   }
return 0;

}

See also

Other educational programming languages include:

References

  1. ^ "ASEE PSW-2015 Conference Proceedings" (PDF). asee.org. p. 158. Retrieved 2016-05-04.
  2. ^ Kourouma, Mathieu (22 October 2016). "Capabilities and Features of Raptor, Visual Logic, and Flowgorithm for Program Logic and Design". ResearchGate. Retrieved 16 July 2017.
  3. ^ "Info". Flowgorithm. Archived from the original on 2016-03-16. Retrieved 2016-01-15.
  4. ^ "Features". Flowgorithm. Archived from the original on 2015-12-09. Retrieved 2016-01-15.
  5. ^ "Flowgorithm - Flowchart Programming Language". flowgorithm.org. Archived from the original on 2025-11-01. Retrieved 2025-11-01.

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.