Questions tagged [flowchart]

A flowchart is a type of diagram that represents an algorithm or process, showing the steps as boxes of various kinds, and their order by connecting these with arrows. This diagrammatic representation can give a step-by-step solution to a given problem.

A flowchart is a type of diagram that represents an algorithm or process, showing the steps as boxes of various kinds, and their order by connecting these with arrows. This diagrammatic representation can give a step-by-step solution to a given problem.

Process operations are represented in these boxes, and arrows connecting them represent flow of control. Data flows are not typically represented in a flowchart, in contrast with data flow diagrams; rather, they are implied by the sequencing of operations. Flowcharts are used in analyzing, designing, documenting or managing a process or program in various fields

For more info check Wikipedia.

585 questions
-1
votes
1 answer

Java FlowChart framework for the web

Do you know any Web FlowChart frameworks for Java ? What exactly do I mean by "Web FlowChart framework": Capable of generating BPMN diagrams; (If not BPMN, at least basic flowcharts / graphs that are easily customizable); The generated diagrams are…
Andrei Ciobanu
  • 12,500
  • 24
  • 85
  • 118
-1
votes
1 answer

Is it possible to write this flowchart into code without variables and goto?

Is it possible to write this flowchart into C++ without variables and goto? That's what I already have: i1; i2; if(w1) { i3; while(w2) { i2; if(w1) { break; } // and it shouldn't do i4; i3; } i4; } i5;
Stanisław Chmiela
  • 471
  • 1
  • 7
  • 30
-1
votes
1 answer

An algorith that prints the largest of N numbers?

I'm just starting programming and I need help on our first assignment in our course. The assignment is: "Given N, write an algorithm that prints the largest of N numbers." What does the instructor mean by "the largest of N numbers"? Is "N" a…
user3024406
  • 3
  • 1
  • 3
-1
votes
4 answers

How to display flowcharts dynamically in java?

I want to develop a java desktop application that takes some inputs from the user and store it in a database. After that, when user clicks on a button (say display) it displays the information, entered by him earlier, in a flowchart like format. Can…
user241426
  • 77
  • 4
  • 9
-1
votes
1 answer

Practically and Logically which is better, do something then save in DB or Save first then Do that thing?

The application should records some tasks occurrence in the Database. The question is: Save or update the task first then perform the task, or perform the task first then save or update to the Database? Logically, I bit that doing the task first and…
user1350140
-1
votes
3 answers

Are there programmatic ways of generating flowcharts?

Preferably in .NET but I'm open to anything. I'm thinking of something where you would declare nodes and paths to nodes and you would render it as a graphic.
Matt
  • 25,943
  • 66
  • 198
  • 303
-2
votes
1 answer

Implementing a loop based on a flowchart

I have problems choosing the initialisation and generally understanding the purpose of this program: I tried following: void main() { int a, b, i = 0; printf("a\n"); scanf("%i",&a); printf("b\n"); scanf("%i\n",&b); } But what…
-2
votes
1 answer

how to create a pre-defined process in latex tikz

I don't know what to call this block in latex, it must be done somehow with arrows, please help.
avebass
  • 1
  • 4
-2
votes
1 answer

How does one represent multiple threads in a structure/flowchart

I have been tasked with creating a structure/flowchart for some client-server and start-up processes in our organization's software. A lot of our processes run concurrently as they have an impact on one another. How is this traditionally represented…
-2
votes
2 answers

How to translate this java code to flowchart

I have my homework but I have a problem understanding this code because it is new to me, it is called Labeled break statement, I'm having a hard time to translate the code to a flowchart Code: 1. class LabeledBreak { 2. public static void…
-2
votes
2 answers

how to draw for range loop in a flowchart

I tried: while True: n = int(input("enter: ")) if n > 1: for i in range(2,n): if (n % i) == 0: print(n,"is not a prime number") break else: print(n,"is a prime number") …
sober
  • 1
  • 1
  • 3
-2
votes
1 answer

how to make flowchart for lambda or java8?

can you help and teach me how to make a flowchart from this code ? Thank You public BigDecimal[][] calcMatrixHessian(BigDecimal[][] polynomialMatrix, int[] classification, double λ) { return IntStream.range(0, polynomialMatrix.length) …
Alan Dida
  • 3
  • 1
-2
votes
1 answer

Flowchart to HTML and CSS online tool?

I need a tool where the user can draw an flowchart easily, and export this to a HTML and CSS file. My intention to save this HTML code in a database, and get this from my android app, and show this in a Webview. Do you know some flowchart tool for…
user1983864
  • 7
  • 1
  • 8
-2
votes
1 answer

EXTJS Dynamic FlowChart

Like I have a if then else, and I want a flowchart for it? Let me explain more, can it be possible, that my server generate some dynamic conditions as input and it draw flowchart for me in extjs 4. ex: if a>b and a
sam
  • 11
  • 3
-2
votes
1 answer

Pseudo code for incremental search method

public boolean searchSummaryData(String textToFind) { int fromRow, fromCol; fromRow = summaryTable.getSelectedRow(); fromCol = summaryTable.getSelectedColumn(); if (fromRow < 0) { fromRow = 0; //set to start point, first row } if (fromCol <…
MooHa
  • 819
  • 3
  • 11
  • 23
1 2 3
38
39