기초100제(8)
-
[코드업 기초 100제] [기초 - 조건/선택 & 반복 실행 구조] 코드업 1065 ~ 1077 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1065. 정수 3개 입력받아 짝수만 출력하기 import java.io.*; public class codeup1065 { 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]); int c = Integer.parseInt(array[2]); int ..
2022.02.15 -
[코드업 기초 100제] [기초 - 비트 & 삼항 연산] 코드업 1059 ~ 1064 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1059. 비트단위로 NOT 하여 출력하기 import java.io.*; public class codeup1059 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int data = Integer.parseInt(br.readLine()); System.out.print(~data); } } 1060. 비트단위로 AND 하여 출력하기 import java.io.*; public class codeup1060 { public static vo..
2022.02.15 -
[코드업 기초 100제] [기초 - 비교 & 논리 연산] 코드업 1049 ~ 1058 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1049. 두 정수 일력받아 비교하기 1 import java.io.*; public class codeup1049 { 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]); if (a > b) { System.out.print("1"); } else ..
2022.02.15 -
[코드업 기초 100제] [기초 - 비트 시프트 연산] 코드업 1047 ~1048 자바 풀이
문제 출처 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
2022.02.15 -
[코드업 기초 100제] [기초 - 출력변환] 1031 ~ 1037 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1031. 10진 정수 1개 입력받아 8진수로 출력하기 import java.io.*; public class codeup1031 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String a = br.readLine(); int num = Integer.parseInt(a); System.out.printf("%o", num); } } 1032. 10진 정수 1개 입력받아 16진수로 출력하기1 import java.io.*; public c..
2022.02.07 -
[코드업 기초 100제] [기초 - 데이터형] 1028 ~ 1030 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1028. 정수 1개 입력받아 그대로 출력하기2 import java.util.Scanner; public class codeup1028 { // reference : // https://hashcode.co.kr/questions/1018/%EC%9E%90%EB%B0%94%EC%97%90%EC%84%9C%EB%8A%94-unsigned-int%EB%A5%BC-%EC%96%B4%EB%96%BB%EA%B2%8C-%EC%A0%95%EC%9D%98%ED%95%98%EB%82%98%EC%9A%94 public static void main(String[] args) throws Exception { Scanner sc = new Scanner..
2022.02.07