
public class Kata{
public static double find_average(int[] array){
double avr = 0;
for(int i = 0; i < array.length; i++){
avr += array[i];
}
double result = avr / array.length;
return result;
}
}'문제 풀이 > 자바' 카테고리의 다른 글
| 자바 문제 풀이 12 (0) | 2023.04.23 |
|---|---|
| 자바 문제 풀이 11 (0) | 2023.04.21 |
| 자바 문제 풀이 9 (0) | 2023.04.18 |
| 자바 문제 풀이 8 (0) | 2023.04.17 |
| 자바 문제 풀이 7 (0) | 2023.04.16 |