일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스크롤
- 알고리즘
- java
- React
- 데이터통신
- 초연결 사회의 데이터통신과 네트워킹
- 한빛아카데미
- 자바
- ScrollToPlugin
- quizlet
- Algorithm
- scrolly
- JLPT
- ArrayList
- prettier-code formatter
- 네트워킹
- 일본어
- JavaScript
- 함수
- 이벤트
- 라이브러리
- 백준
- 단어장
- reactjs code snippets
- 연습문제
- 자바스크립트
- gsap
- Node.js
- 초연결사회의 데이터통신과 네트워킹
- html
- Today
- Total
목록java (99)
umilove98의 블로그
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q14652 { 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 n = Integer.parseInt(st.nextToken()); in..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Q11654 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int i = bf.readLine().charAt(0); System.out.println(i); } }
klaudia 와 natalia 두 사람이 가지고 있는 사과의 합 , 각각 가지고 있는 사과의 수의 차를 순서대로 입력받고 각자 가지고 있는 사과의 수를 계산하여 출력한다. klaudia가 가진 사과의 수가 diff 개 더 많다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.math.BigInteger; public class Main { public static void main(String[] args) throws IOException { BufferedRe..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q8370 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String inp = bf.readLine(); StringTokenizer st = new StringTokenizer(inp); int n1, n2, k1, k2; n1 = Integer.parseInt..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Q6749 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int third = Integer.parseInt(bf.readLine()); //셋째 나이 int second = Integer.parseInt(bf.readLine()); //둘째 나이 int rule = second - third; //서로의 나이 차 규칙을 찾..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Q5554 { static int input = 0; public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); for (int i = 0; i < 4; i++) { input += Integer.parseInt(bf.readLine()); } System.out.println(input/60); System.out.println(input..