tfm-report/img/multiplycfg.dot

5 lines
210 B
Text
Raw Normal View History

2019-10-18 10:54:33 +02:00
digraph g {
Start [shape=box];
End [shape=box];
Start -> "int result = 0" -> "while (x > 0)" -> "result += y" -> "x--" -> "while (x > 0)" -> "System.out.println(result)" -> "return result" -> "End";
}