프로그래머스 120817 배열의 평균값

Jmnote (토론 | 기여)님의 2023년 11월 12일 (일) 13:06 판

1 개요

프로그래머스 120817 배열의 평균값

2 C++

#include <string>
#include <vector>

using namespace std;

double solution(vector<int> numbers) {
    double answer = 0;
    for(int& n: numbers) {
        answer += n;
    }
    return answer/numbers.size();
}

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}