정답
import java.util.Scanner;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
System.out.print(1+" ");
for(int i=1; i<=N; i++)
{
System.out.print((int)Math.pow(2,i)+" ");
}
}
}
'Java > SWEA' 카테고리의 다른 글
[JAVA] SEWA 1859. 백만 장자 프로젝트 (0) | 2024.05.02 |
---|---|
[JAVA] SWEA 1545. 거꾸로 출력해 보아요 (0) | 2024.05.01 |
[JAVA] SWEA 1936. 1대1 가위바위보 (0) | 2024.05.01 |
[JAVA] SWEA 1933. 간단한 N의 약수 (0) | 2024.05.01 |
[JAVA] SWEA 1938. 아주 간단한 계산기 (0) | 2024.05.01 |