how to draw infinte in a flowchart

685 Views Asked by At

I was learning flowcharts, wanted to show this code in a flowchart, wanted to print infinite times without declaring a counter. please note I haven't declared any counter.

for (;;){
        System.out.println("helloworld"); 
    }       }
1

There are 1 best solutions below

0
On BEST ANSWER

An infinite loop is like any other loop an arrow that goes back to a previous point.

Usually, you still place a condition (rhombus/diamond shape) at the start of the loop as usual, but there is only one outgoing path.