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 |
Tags
- CPU 스케줄링
- 알고리즘
- 협업
- react-redux
- react
- 정렬
- C++
- 프로그래머스
- error
- 리덕스장바구니
- OS
- 파이썬
- 일상
- 코드업
- 타입스크립트
- Java
- codeup
- Operating System
- 공부
- Spring
- 기초100제
- memory
- Redux
- 백준
- 분할메모리할당
- 스프링
- 토이프로젝트
- js to ts
- web
- 자료구조
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