mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 05:20:54 +07:00
13 lines
225 B
Java
13 lines
225 B
Java
// "Move condition to loop" "false"
|
|
class Main {
|
|
public static void main(String[] args) {
|
|
int i = 1;
|
|
do<caret> {
|
|
if (i < 100) {
|
|
break;
|
|
} else {
|
|
i = i * 3;
|
|
}
|
|
} while(true);
|
|
}
|
|
} |