[C++] 프로그래머스 Level 1 : x만큼 간격이 있는 n개의 숫자

Kim Nahyeong·2022년 8월 1일
0

프로그래머스

목록 보기
9/38

#include <string>
#include <vector>

using namespace std;

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

그냥 단순히 for문을 사용해서 구현하는 문제 조금만 생각하면 금방 풀 수 있다.

0개의 댓글