mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
8 lines
151 B
Java
8 lines
151 B
Java
class Test {
|
|
public void method() {
|
|
for(int i = 0; i < 100; i++) {
|
|
int temp = i * 2;
|
|
sum += temp;
|
|
}
|
|
}
|
|
} |