mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
14 lines
366 B
Java
14 lines
366 B
Java
class Foo {
|
|
boolean bar(String[][] a) {
|
|
for (int i = 0; i < a.length; i++)
|
|
for (int j = 0; i < a[i].length; j++) {<selection>
|
|
if (a[i][j].length() > 3 && i % 3 == 0) {
|
|
System.out.println();
|
|
return true;
|
|
}
|
|
</selection>
|
|
}
|
|
return false;
|
|
}
|
|
}
|