[swexpert] 2019. 더블더블 (java, D1)
728x90
반응형
Math.power는 실수형을 반환하므로 int로 치환한 후 출력해주면 된다
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
for (int i = 0; i <= n; i++) {
System.out.print((int)Math.pow(2,i)+" ");
}
}
}
728x90
반응형
'swexpert' 카테고리의 다른 글
[swexpert] 1928. Base 64 Decoder (D2, java) (0) | 2021.01.18 |
---|---|
[swexpert] 1954. 달팽이 숫자 (java, D2) (0) | 2021.01.18 |
[swexpert] 2029. 몫과 나머지 출력하기 (D1 , java) (0) | 2021.01.14 |
[swexpert] 2050. 알파벳을 숫자로 (java) (0) | 2021.01.14 |
[swexpert] 2369. B theater (java) (0) | 2021.01.13 |
TAGS.