mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
11 lines
237 B
Java
11 lines
237 B
Java
public class C {
|
|
|
|
public C(int[] ints) {
|
|
for (int i = 0; i < length && ints[i] > 0; i++) {
|
|
System.out.println(ints[i]);
|
|
System.out.println(ints[i]);
|
|
System.out.println(<selection>ints[i]</selection>);
|
|
}
|
|
}
|
|
}
|