코드업(9)
-
[코드업 기초 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제] [기초 - 산술연산] 1038 ~ 1046 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1038. 정수 2개 입력받아 합 출력하기 1 import java.util.Scanner; public class codeup1038 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double a = sc.nextInt(); double b = sc.nextInt(); System.out.printf("%.0f", a + b); } } 1039. 정수 2개 입력받아 합 출력하기 2 import java.io.*; public class codeup1039 { public static void main(String[] args) throws..
2022.02.07 -
[코드업 기초 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