tfm-report/img/breakcfg.dot

7 lines
240 B
Text
Raw Normal View History

2019-10-18 10:54:33 +02:00
digraph g {
Start [shape=box];
End [shape=box];
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;
}