프로그래머스(Level 1) - 🎃 평균 구하기

Gammi·2022년 12월 18일
0

프로그래머스

목록 보기
12/69

✔ 문제





✔ 풀이


class Solution {
  public double solution(int[] arr) {
    double answer = 0;
    int total = 0;
    
    for(int i = 0; i < arr.length; i++) {
      total += arr[i];
    }
    
    answer = (double)total / arr.length;
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글