티스토리 뷰
title: "평균 구하기"
category: 프로그래머스[Level-1]
tags: [C++, JavaScript, 프로그래머스]
date: "2021-01-20"
문제 링크
C++
#include <string>
#include <vector>
using namespace std;
double solution(vector<int> arr) {
double answer = 0;
for(auto e: arr){
answer += e;
}
answer /= arr.size();
return answer;
}
JavaScript
function solution(arr) {
var answer = 0;
arr.forEach((value) => {
answer += value;
});
answer /= arr.length;
return answer;
}
728x90
반응형
'Programmers Solutions > Level-1' 카테고리의 다른 글
[프로그래머스] 최대공약수와 최소공배수 (0) | 2021.02.03 |
---|---|
[프로그래머스] 콜라츠 추측 (0) | 2021.02.03 |
[프로그래머스] 하샤드 수 (0) | 2021.02.03 |
[프로그래머스] 핸드폰 번호 가리기 (0) | 2021.02.03 |
[프로그래머스] 행렬의 덧셈 (0) | 2021.02.03 |
댓글