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
- string
- implement
- hash table
- sorting
- Counting
- Number Theory
- Matrix
- geometry
- 구현
- 코딩테스트
- array
- Tree
- bit manipulation
- Math
- 파이썬
- two pointers
- database
- Class
- Method
- SQL
- greedy
- Binary Search
- dynamic programming
- java
- simulation
- 자바
- Stack
- Data Structure
- Binary Tree
- 코테
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 10998. 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' 카테고리의 다른 글
[백준 온라인 저지] 10869. 사칙연산 (0) | 2023.03.17 |
---|---|
[백준 온라인 저지] 1008. A/B (0) | 2023.03.17 |
[백준 온라인 저지] 1001. A-B (0) | 2023.03.17 |
[백준 온라인 저지] 1000. A+B (0) | 2023.03.17 |
[백준 온라인 저지] 2557. Hello World (0) | 2023.03.17 |