[Programmers] x만큼 간격이 있는 n개의 숫자

프로그래머스 level1

Posted by kyoungIn on January 14, 2019

x만큼 간격이 있는 n개의 숫자

문제 링크 : (https://programmers.co.kr/learn/courses/30/lessons/12954)

풀이

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <string>
#include <vector>

using namespace std;

vector<long long> solution(int x, int n) {
    vector<long long> answer;
    int sum =x;
    for(int i=0;i<n;i++){
        answer.push_back(sum);
        sum+=x;
    }
    return answer;
}