[코드업 기초 100제] [기초 - 비트 시프트 연산] 코드업 1047 ~1048 자바 풀이

2022. 2. 15. 22:39코딩테스트/코드업

728x90
반응형

문제 출처


https://github.com/haessae0/MCTP

 

1047. 정수 1개 입력받아 2배 곱해 출력하기

import java.io.*;

public class codeup1047 {
  public static void main(String[] args) throws IOException {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    String data = br.readLine();

    int a = Integer.parseInt(data);

    System.out.print(a << 1);
  }

}

1048. 한 번에 2의 거듭제곱 배로 출력하기 

import java.io.*;

public class codeup1048 {
  public static void main(String[] args) throws IOException {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    String array[] = br.readLine().split(" ");

    int a = Integer.parseInt(array[0]);
    int b = Integer.parseInt(array[1]);

    System.out.print(a << b);
  }

}

 

728x90
반응형