mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +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 i = 0; i < array1.length; i++) {
|
|
System.out.println(array1[i]);
|
|
}
|
|
}
|
|
} |