일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 알고리즘
- scrolly
- Algorithm
- prettier-code formatter
- 라이브러리
- 백준
- 일본어
- 자바
- 초연결 사회의 데이터통신과 네트워킹
- html
- 이벤트
- Node.js
- quizlet
- 네트워킹
- JavaScript
- 함수
- 연습문제
- 데이터통신
- gsap
- JLPT
- java
- 자바스크립트
- 초연결사회의 데이터통신과 네트워킹
- 단어장
- 한빛아카데미
- React
- ArrayList
- reactjs code snippets
- ScrollToPlugin
- 스크롤
- Today
- Total
목록java (99)
umilove98의 블로그
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q16430 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String s = bf.readLine(); StringTokenizer st = new StringTokenizer(s); int a = Integer.parseInt(st.nextToken()); in..
import java.time.LocalDateTime; public class Q16170 { public static void main(String[] args) { LocalDateTime now = LocalDateTime.now(); now.minusHours(9); System.out.println(now.getYear()); System.out.println(now.getMonthValue()); System.out.println(now.getDayOfMonth()); } }
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q15964 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String s = bf.readLine(); StringTokenizer st = new StringTokenizer(s); long a = Integer.parseInt(st.nextToken()); l..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Q15727 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int l = Integer.parseInt(bf.readLine()); int t = 0; if (l%5 == 0) { t = l/5; }else { t = l/5 +1; } System.out.println(t); } }
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Q15439 { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int inp = Integer.parseInt(bf.readLine()); int out = inp * (inp-1); System.out.println(out); } }
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.math.BigInteger; public class Q14928 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); BigInteger inp = new BigInteger(bf.readLine()); BigInteger birth = new BigInteger("20000303"); System.out.println(inp.re..