mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 04:09:09 +07:00
14 lines
249 B
Java
14 lines
249 B
Java
// "Replace with collect" "false"
|
|
|
|
public class Test {
|
|
public void test(int n) {
|
|
for(int <caret>i=0; i<n; i++) {
|
|
i = i * 2;
|
|
System.out.println(i);
|
|
}
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
new Test().test(20);
|
|
}
|
|
} |