반응형
https://school.programmers.co.kr/learn/courses/30/lessons/120817
class Solution {
public double solution(int[] numbers) {
double answer = 0;
for(int i=0; i<numbers.length; i++) {
answer += numbers[i];
}
answer /= numbers.length;
return answer;
}
}
반응형
'Portpolio > codingtest' 카테고리의 다른 글
프로그래머스 lv0. 짝수의 합 java (0) | 2024.05.29 |
---|---|
프로그래머스 lv0. 각도기 java (0) | 2024.05.16 |
프로그래머스 lv.0 두수의 나눗셈 java (0) | 2024.05.09 |
프로그래머스 lv0. 문자열 반복해서 출력하기 java (0) | 2024.04.01 |
프로그래머스 lv0. a와 b 출력하기 java (0) | 2024.03.29 |
댓글