tfm-report/img/multiplycfg.dot
2019-10-18 08:54:33 +00:00

5 lines
No EOL
210 B
Text

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";
}