일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 회원가입
- Spotify Api
- Gem
- modern c++
- MYSQL
- c
- SECS
- regression
- 스포티파이
- spotify
- 백준
- SECS/GEM
- 자바
- linux
- 파이썬
- spring boot
- Spring JPA
- SECS-II
- java
- SW Expert Academy
- python
- CS
- C++
- programmers
- 프로그래머스
- 회귀
- Baekjoon
- Spring
- SWEA
- Computer Science
Archives
- Today
- Total
비버놀로지
[Programmers 프로그래머스] 12954 x만큼 간격이 있는 n개의 숫자 본문
728x90
programmers.co.kr/learn/courses/30/lessons/12954
정수 x와 자연수 n을 입력 받아, x부터 시작해 x씩 증가하는 숫자를 n개 지니는 리스트를 리턴해야 합니다.
입력된 정수 x와 자연수 n값을 이용해서 n만큼의 for문을 돌면서 배열안에 x값을 곱해가면서 출력값을 만들어 준다.
class Solution {
public long[] solution(int x, int n) {
long[] answer=new long[n];
for (int i = 0; i < answer.length; i++) {
answer[i]=(long)x*(i+1);
}
return answer;
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[Programmers 프로그래머스] 12982 예산 (0) | 2021.01.08 |
---|---|
[Programmers 프로그래머스] 12969 직사각형 별찍기 (0) | 2021.01.08 |
[Programmers 프로그래머스] 12950 행렬의 덧셈 (0) | 2021.01.08 |
[Programmers 프로그래머스] 12948 핸드폰 번호 가리기 (0) | 2021.01.08 |
[Programmers 프로그래머스] 12947 하샤드 수 (0) | 2021.01.08 |
Comments