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
- hash table
- java
- Binary Tree
- 자바
- Counting
- 코테
- 구현
- bit manipulation
- Matrix
- SQL
- Number Theory
- simulation
- array
- 코딩테스트
- greedy
- Binary Search
- sorting
- Method
- two pointers
- implement
- Class
- 파이썬
- dynamic programming
- string
- Tree
- Math
- Data Structure
- geometry
- Stack
- database
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 11718. 그대로 출력하기 본문
- 입력: 입력이 주어진다. 입력은 최대 100줄로 이루어져 있고, 알파벳 소문자, 대문자, 공백, 숫자로만 이루어져 있다. 각 줄은 100글자를 넘지 않으며, 빈 줄은 주어지지 않는다. 또, 각 줄은 공백으로 시작하지 않고, 공백으로 끝나지 않는다.
- 출력: 입력받은 그대로 출력한다.
import java.util.*;
class Main {
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
while(scan.hasNext())
System.out.println(scan.nextLine());
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 643. Maximum Average Subarray I (0) | 2023.03.09 |
---|---|
[LeetCode/Easy] 2553. Separate the Digits in an Array (0) | 2023.03.08 |
[백준 온라인 저지] 9086. 문자열 (0) | 2023.03.07 |
[백준 온라인 저지] 2743. 단어 길이 재기 (0) | 2023.03.07 |
[백준 온라인 저지] 10811. 바구니 뒤집기 (0) | 2023.03.07 |