8 lines
271 B
Text
8 lines
271 B
Text
|
digraph g {
|
||
|
Start [shape=box];
|
||
|
End [shape=box];
|
||
|
Start -> End [style=dashed];
|
||
|
Start -> "int a = 1" -> "while (a > 0)" -> "if (a > 10)" -> "break" -> "print(a)";
|
||
|
"break" -> "a++" [style=dashed];
|
||
|
"if (a > 10)" -> "a++" -> "while (a > 0)" -> "print(a)" -> End;
|
||
|
}
|