SWexpertAcademy(2019)

2050 더블 더블 (D1)

import java.util.Scanner;
public class Solution {

	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		int N = stdIn.nextInt();
		for(int i = 0; i <= N; i ++) {
			System.out.print((int)Math.pow(2, i)+" ");
		}
	}
}

2019. 더블더블

자바에서는 제곱함수로 Math.pow(double,double)를 사용한다. Math.pow는 입출력이 double이다. 첫 번쨰 인자는 밑의 수, 두 번째 인자는 지수이다.


참고자료

0%