mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
10 lines
194 B
Java
10 lines
194 B
Java
class Foo {
|
|
void foo(String[] input) {
|
|
int temp = input.length;
|
|
char[][] board = new char[temp][];
|
|
for (int i = 0; i < temp; i++) {
|
|
System.out.println(temp);
|
|
}
|
|
}
|
|
}
|