mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
10 lines
160 B
Java
10 lines
160 B
Java
// "Replace with sum()" "true"
|
|
|
|
public class Main {
|
|
public void test(long[] list) {
|
|
int sum = 0;
|
|
for(long x : li<caret>st) {
|
|
sum+=x;
|
|
}
|
|
}
|
|
} |