Hi, could someone to direct me the right way with this? Here is the problem, which I think I have nailed:
before:
A
if c then goto X
B
if d then goto Y
C
X: D
E
Y: F
after (in pseudocode):
A
if c then
D
E
else
B
if not d then
C
D
E
F
Now I have a trouble with the flowchart I have attached.
Here is a pseudocode that I figured out, and I know it is wrong:
A
while c
B
if not d
E
else
need to break out of wile loop somehow to get to 'F'
F
Please let me know if the first problem is right, and if you could help me with how to tame the flowchart to get rid of the arrow from d to F...
Thanks in advance,
Waldis :confused: