상세 컨텐츠

본문 제목

99클럽 코테 스터디 2일차 TIL < x만큼 간격이 있는 n개의 숫자 >

항해99

by INJILEE 2024. 7. 23. 13:33

본문

오늘의 문제

 

함수 solution은 정수 x와 자연수 n을 입력 받아, 
x부터 시작해 x씩 증가하는 숫자를 n개 지니는 리스트를 리턴해야 합니다. 
다음 제한 조건을 보고, 조건을 만족하는 함수, solution을 완성해주세요.

제한 조건
x는 -10000000 이상, 10000000 이하인 정수입니다.
n은 1000 이하인 자연수입니다.
입출력 예
x	n	answer
2	5	[2,4,6,8,10]
4	3	[4,8,12]
-4	2	[-4, -8]

 

학습 키워드

 

키보드 입출력  == > 
증가 반복문      == >
배열                   == >

 

문제 풀이

반복문을 사용하여 증가 x 를 x 만큼 n번 반복하며 배열에 값을 추가
import java.util.Arrays;
import java.util.Scanner;
class Solution {
public static void main(String[] args) {
		  Scanner sc = new Scanner(System.in);
		  
		  int x = sc.nextInt();
		  int n = sc.nextInt();
		  solution(x,n);
	}
	
	 public static long[] solution(int x, int n) {
	        long[] answer = new long[n];
	        int cnt=0;
	        while(cnt!=n) {
	        	if(cnt == 0) {
	        		answer[cnt] = x;
	        		System.out.println(answer[cnt]);
	        	}else { 
	        		answer[cnt] = answer[cnt-1]+x;
	        		
	        	}
	        	cnt++;
	        }
	        System.out.println(Arrays.toString(answer));
	        return answer;
	    }
}

 

 

오늘의 회고

 

 

 

관련글 더보기