일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- error
- 협업
- 리덕스장바구니
- 백준
- 파이썬
- 토이프로젝트
- Operating System
- OS
- 프로그래머스
- js to ts
- 공부
- codeup
- Spring
- Redux
- 정렬
- react
- memory
- 분할메모리할당
- 자료구조
- web
- Java
- 일상
- 코드업
- 스프링
- 기초100제
- 타입스크립트
- C++
- react-redux
- CPU 스케줄링
- 알고리즘
- Today
- Total
목록codeup (9)
감자튀김 공장🍟
[1092] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int b = scanner.nextInt(); int c = scanner.nextInt(); int day = 1; while(day % a != 0 || day % b != 0 || day % c != 0) { day++; // while문 조건의 역을 생각해보자 } System.out.print(day); } } [1093] import java.util.Scanner; public class Main { pu..
[1082] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String a = scanner.next(); int n = Integer.parseInt(a, 16); for(int i = 0; i < 16; i++) { System.out.printf("%X * %x = %X\n", n, i, n*i); } } } [1083] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Sc..
[1072] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); for(int i = 0; i < a; i++) { int b = scanner.nextInt(); System.out.println(b); } } } [1073] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); while(true) { ..
[1062] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int b = scanner.nextInt(); int x = a ^ b; System.out.println(x); } } [1063] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int..
[1052] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int b = scanner.nextInt(); if(a != b) { System.out.println(1); } else { System.out.println(0); } } } [1053] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in)..
[1042] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String a = scanner.nextLine(); String b[] = a.split(" "); int c = Integer.parseInt(b[0]); int d = Integer.parseInt(b[1]); System.out.println(c / d); } } [1043] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner..
[1032] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); String b = Integer.toHexString(a); System.out.println(b); } } [1033] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); String b =..
[1012] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); float x = scanner.nextFloat(); System.out.printf("%f", x); // 이렇게 출력해본게 처음이였다... } } import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); float x = scanner.nextFloat(); System.out.printl..
[1001] public class Main { public static void main(String[] args) { System.out.println("Hello"); } } [1002] public class Main { public static void main(String[] args) { System.out.println("Hello World"); } } [1003] public class Main { public static void main(String[] args) { System.out.println("Hello\nWorld"); } } [1004] public class Main { public static void main(String[] args) { System.out.pri..