개인공부
알고리즘 - 평균구하기 본문
함수를 완성해서 매개변수 array의 평균값을 return하도록 만들어 보세요.
어떠한 크기의 array가 와도 평균값을 구할 수 있어야 합니다.
public class GetMean {
public int getMean(int[] array) {
int result = 0;
for(int n=0; n<array.length; n++){
result = result + array[n];
}
result = result / array.length;
return result;
}
public static void main(String[] args) {
int x[] = {5, 4, 3};
GetMean getMean = new GetMean();
// 아래는 테스트로 출력해 보기 위한 코드입니다.
System.out.println("평균값 : " + getMean.getMean(x));
}
}
결과 : 평균 값 : 4
'알고리즘' 카테고리의 다른 글
알고리즘 - 정수 내림차순으로 배치하기 (0) | 2018.05.18 |
---|---|
알고리즘 - 하샤드 수 (0) | 2018.05.18 |
알고리즘 - 삼각형 출력하기 (0) | 2018.05.17 |
알고리즘 - 가운데 글자 가져오기 (0) | 2018.05.17 |
알고리즘 - 문자열 내림차순으로 배치하기 (0) | 2018.05.16 |
Comments