mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
302 B
Java
15 lines
302 B
Java
class C {
|
|
{
|
|
Object[] array;
|
|
|
|
<selection>for (int i = 0; i < array.length; i++) {
|
|
System.out.println(array[i]);
|
|
}</selection>
|
|
|
|
|
|
Object[] array1;
|
|
for (int j = 0; j < array1.length; j++) {
|
|
System.out.println(array1[j]);
|
|
}
|
|
}
|
|
} |