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 |
Tags
- Class
- greedy
- Math
- simulation
- bit manipulation
- 코테
- array
- 자바
- Tree
- Matrix
- 파이썬
- two pointers
- Binary Search
- Stack
- geometry
- 구현
- 코딩테스트
- database
- Data Structure
- string
- Counting
- Binary Tree
- hash table
- sorting
- dynamic programming
- Method
- java
- Number Theory
- implement
- SQL
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 1001. A-B 본문
- 입력: 첫째 줄에 A와 B가 주어진다. (0 < A, B < 10)
- 출력: 첫째 줄에 A-B를 출력한다.
import java.util.*;
class Main{
public static void main(String args[]){
Scanner scan = new Scanner(System.in);
int a = scan.nextInt(), b = scan.nextInt();
System.out.println(a - b);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 1008. A/B (0) | 2023.03.17 |
---|---|
[백준 온라인 저지] 10998. A×B (0) | 2023.03.17 |
[백준 온라인 저지] 1000. A+B (0) | 2023.03.17 |
[백준 온라인 저지] 2557. Hello World (0) | 2023.03.17 |
[백준 온라인 저지] 2480. 주사위 세개 (0) | 2023.03.17 |