mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
7 lines
162 B
Plaintext
7 lines
162 B
Plaintext
firstLoop:
|
|
for (int i = 0; i < 10; i++) {
|
|
for (int j = 0; j < 10; j++) {
|
|
if ((i+j) % 5 != 0) continue firstLoop;
|
|
System.out.println(i + " " + j);
|
|
}
|
|
} |