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
- sorting
- bit manipulation
- Tree
- 코테
- Class
- array
- simulation
- Data Structure
- 자바
- geometry
- string
- 파이썬
- implement
- 코딩테스트
- 구현
- greedy
- dynamic programming
- SQL
- Binary Tree
- Number Theory
- Math
- Method
- Binary Search
- Matrix
- hash table
- java
- two pointers
- Counting
- Stack
- database
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 2739. 구구단 본문
- 입력: 첫째 줄에 N이 주어진다. N은 1보다 크거나 같고, 9보다 작거나 같다.
- 출력: 출력형식과 같게 N*1부터 N*9까지 출력한다.
import java.util.*;
class Main{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
for(int i=1 ; i<10 ; i++)
System.out.println(n + " * " + i + " = " + n*i);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 8393. 합 (0) | 2023.03.17 |
---|---|
[백준 온라인 저지] 10950. A+B - 3 (0) | 2023.03.17 |
[백준 온라인 저지] 4344. 평균은 넘겠지 (0) | 2023.03.17 |
[백준 온라인 저지] 8958. OX퀴즈 (0) | 2023.03.17 |
[백준 온라인 저지] 1546. 평균 (0) | 2023.03.17 |