본문 바로가기
프로그래밍/알고리즘

정수 N개의 합

by ILove_NS_MoKa 2019. 10. 11.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
#include <vector>
using namespace std;
long long sum(vector<int> &a)
{
    long long sum = 0;
    //for (vector<int>::iterator itr = a.begin(); itr != a.end(); itr++) {
    //    sum += *itr;
    //}
    for (int i=0; i< a.size();i++)
    {
        sum += a[i];
    }
    return sum;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

'프로그래밍 > 알고리즘' 카테고리의 다른 글

c++ 백분율,퍼센트 계산  (0) 2019.09.03
백준 4344 평균은 넘겠지  (0) 2019.09.03
백준 8958 OX퀴즈  (0) 2019.09.03
백준 평균 1546  (0) 2019.09.03
백준 3052 나머지  (0) 2019.09.02