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