250x250
반응형
Notice
Recent Posts
Recent Comments
Link
N
(프로그래머스 c++)평균 구하기 본문
728x90
반응형
for문만 사용할 줄 알면 풀 수 있는 문제..!
for문을 돌면서 answer에 arr에 있는 수를 모두 더한 후,
마지막에 arr.size()만큼 나눠주면 끄으으읕..!
#include <string>
#include <vector>
using namespace std;
double solution(vector<int> arr) {
double answer = 0;
for(int i = 0; i < arr.size(); i++)
answer += arr[i];
answer /= arr.size();
return answer;
}
728x90
반응형
'프로그래머스 알고리즘 > 1단계' 카테고리의 다른 글
(프로그래머스 c++)핸드폰 번호 가리기 (0) | 2020.04.29 |
---|---|
(프로그래머스 c++)하샤드 수 (0) | 2020.04.29 |
(프로그래머스 c++)콜라츠 추측 (0) | 2020.04.28 |
(프로그래머스 c++)최대 공약수와 최소 공배수 (0) | 2020.04.28 |
(프로그래머스 c++)짝수와 홀수 (0) | 2020.04.28 |