mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
14 lines
284 B
Plaintext
14 lines
284 B
Plaintext
class MyWorld {
|
|
|
|
public void process(Object[] o) {
|
|
int i = 0;
|
|
while (o[i] instanceof String && ((String) o[i]).startsWith("hello")) {
|
|
i++;
|
|
}
|
|
i = 0;
|
|
while (!(o[i] instanceof String && ((String) o[i]).startsWith("hello"))) {
|
|
i++;
|
|
}
|
|
}
|
|
}
|