From: "Sharan Basappa"
> Hi Jenda, Rob, Shawn,
>
> I am attaching a sample flowchart figure.
>
> Step1 and Step2 are the process steps and D1 and D2 are the decisions.
>
> Will this code translate to the foll in perl?
>
> do
> {
> do
> {
> step1
> } while (D1)
> step2
> } while
On Thu, 2008-12-25 at 19:15 +0530, Sharan Basappa wrote:
> Hi Jenda, Rob, Shawn,
>
> I am attaching a sample flowchart figure.
>
> Step1 and Step2 are the process steps and D1 and D2 are the decisions.
>
> Will this code translate to the foll in perl?
>
> do
> {
> do
> {
> step1
>
Hi Jenda, Rob, Shawn,
I am attaching a sample flowchart figure.
Step1 and Step2 are the process steps and D1 and D2 are the decisions.
Will this code translate to the foll in perl?
do
{
do
{
step1
} while (D1)
step2
} while (D2)
What if D2 traces back to Step2 instead? How
From: "Sharan Basappa"
> I am implementing an algorithm that I have worked out in theory. The
> algorithm is in the form of a flowchart.
> The area where I am having problem is where the flow passes from a
> lower decision block to higher one.
> I can implement this using a do while block for such
Sharan Basappa wrote:
>
> I am implementing an algorithm that I have worked out in theory. The
> algorithm is in the form of a flowchart. The area where I am having problem
> is where the flow passes from a lower decision block to higher one. I can
> implement this using a do while block for such
On Wed, 2008-12-24 at 20:10 +0530, Sharan Basappa wrote:
> Hi,
>
> I am implementing an algorithm that I have worked out in theory. The
> algorithm is in the form of a flowchart.
> The area where I am having problem is where the flow passes from a
> lower decision block to higher one.
> I can impl
Hi,
I am implementing an algorithm that I have worked out in theory. The
algorithm is in the form of a flowchart.
The area where I am having problem is where the flow passes from a
lower decision block to higher one.
I can implement this using a do while block for such flow. The issue
is when mult