class Solution {
public int solution(int n) {
int answer = 0;
for(int i=2; i<=n; i+=2){
answer += i;
}
return answer;
}
}
import java.util.stream.IntStream;
class Solution {
public int solution(int n) {
return IntStream.rangeClosed(0, n)
.filter(e -> e % 2 == 0)
.sum();
}
}
다른 분의 풀이. 참고하고 싶어서 가져왔다.
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 양꼬치 (0) | 2023.02.22 |
---|---|
[프로그래머스/자바] 배열의 평균 값 (0) | 2023.02.22 |
[프로그래머스/자바] 각도기 (0) | 2023.02.22 |
[프로그래머스/자바] 두 수의 나눗셈 (0) | 2023.02.22 |
[프로그래머스/자바] 나이 출력 (0) | 2023.02.22 |