Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- react-redux
- 분할메모리할당
- 협업
- 일상
- 기초100제
- 코드업
- CPU 스케줄링
- 타입스크립트
- Redux
- Operating System
- 프로그래머스
- react
- 정렬
- 백준
- Spring
- OS
- 스프링
- C++
- 공부
- Java
- web
- 토이프로젝트
- js to ts
- memory
- 리덕스장바구니
- codeup
- 알고리즘
- 파이썬
- error
- 자료구조
Archives
- Today
- Total
목록자바 (1)
감자튀김 공장🍟
[CodeUp]JAVA 1092~1099
[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..
Algorithm/CodeUp
2021. 3. 19. 18:52