5 lines
No EOL
210 B
Text
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";
|
|
} |