풀이과정
x값을 cnt변수에 담아두고 n횟수만큼 while문을 돌려준다.
#include <string>
#include <vector>
using namespace std;
vector<long long> solution(int x, int n) {
vector<long long> answer;
int cnt = x;
while(n--){
answer.push_back(x);
x += cnt;
}
return answer;
}
'🍞 Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스][Level1] 로또의 최고 순위와 최저 순위 c++ (0) | 2022.09.03 |
---|---|
[프로그래머스][Level1] 내적 c++ (0) | 2022.09.03 |
[프로그래머스][Level1] K번째수 c++ (0) | 2022.09.03 |
[프로그래머스][Level1] 행렬의 덧셈 c++ (0) | 2022.09.03 |
[프로그래머스][Level1] 핸드폰 번호 가리기 c++ (0) | 2022.09.03 |