250x250
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
- 연습문제
- gsap
- 네트워킹
- JLPT
- 초연결사회의 데이터통신과 네트워킹
- 자바스크립트
- 단어장
- 라이브러리
- prettier-code formatter
- html
- scrolly
- 초연결 사회의 데이터통신과 네트워킹
- Node.js
- 이벤트
- 백준
- JavaScript
- React
- reactjs code snippets
- Algorithm
- quizlet
- java
- 한빛아카데미
- 데이터통신
- 일본어
- 알고리즘
- 함수
- ScrollToPlugin
- ArrayList
- 스크롤
- 자바
Archives
- Today
- Total
umilove98의 블로그
백준 6749 Java 본문
반응형
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; //서로의 나이 차 규칙을 찾음
int first = second + rule;
System.out.println(first); //첫째 나이 출력
}
}
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 8437 Java (0) | 2021.07.17 |
---|---|
백준 8370 Java (0) | 2021.07.17 |
백준 5554 Java (0) | 2021.07.17 |
백준 5522 Java (0) | 2021.07.17 |
백준 3046 Java (0) | 2021.07.17 |