Hello All,
Requesting for a flow chart design for a nested while condition. Please find the scenario below.
- Initialize a counter(let’s say “PageCount”) as 5
- Do while (when page count>0)
- Get a count(let’s say “Row Count”)
- While (Row count<10)
- Perform some action
- Decrease Row Count
- Exit While loop
- Decrease Page Count
- Exit Do while
In this case, I am looking for a flow chart solution, where Do while and While sequence could be separated (i.e.) with out nesting.
Please help, if we could perform this.
Thanks in Advance.