반응형
1.Scanner를 이용한 방법
import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int d = 2;
for(int i=0; i<N; i++){
d = (d+(d-1));
}
System.out.println(d*d);
sc.close();
}
}
import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int d = 2;
for(int i=0; i<N; i++){
d = (d+(d-1));
}
System.out.println((int)Math.pow(d, 2));
sc.close();
}
}
2.BufferedReader를 이용한 방법
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main{
public static void main(String[] args)throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
int d = 2;
for(int i=0; i<N; i++){
d = (d+(d-1));
}
System.out.println(d*d);
br.close();
}
}
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main{
public static void main(String[] args)throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
int d = 2;
for(int i=0; i<N; i++){
d = (d+(d-1));
}
System.out.println((int)Math.pow(d, 2));
br.close();
}
}
아래는 Math.pow()라는 거듭 제곱 메서드이다. 기본 double로 되기 때문에 (int)를 붙여주었다.
거듭제곱 출처 : https://coding-factory.tistory.com/531
반응형
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 1193 - 분수 찾기 (JAVA/ 자바) (0) | 2024.03.26 |
---|---|
[백준] 2292 - 벌집 (JAVA/ 자바) (0) | 2024.03.24 |
[백준] 2720 - 세탁소 사장 동혁 (JAVA/ 자바) (0) | 2024.03.22 |
[백준] 11005 - 진법 변환 2 (JAVA/ 자바) (0) | 2024.03.21 |
[백준] 2745 - 진법 변환 (JAVA/ 자바) (0) | 2024.03.20 |