๋ฐ์ํ
https://www.acmicpc.net/problem/11718
์ฝ๋
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
while(scan.hasNextLine()) {
String str = scan.nextLine();
if(str.isEmpty() || str.length() > 1000)
break;
System.out.println(str);
}
scan.close();
}
}
ํ์ด
๋ฐ๋ก ์ ๋ ฅ ์กฐ๊ฑด์ ์๊ณ , ์ ๋ ฅ์ด ์ฃผ์ด์ง๋๋์ ๊ทธ๋๋ก ์ถ๋ ฅํด์ผํ๋ค.
Scanner ํด๋์ค์ hasNextLine() ๋ฉ์๋์ ๋น์ด์๋์ง ํ์ธํ๋ ๋ฉ์๋ isEmpty() ๋ฉ์๋๋ฅผ ์ฌ์ฉํ๋ค.
๋ฐ์ํ
'Algorithm' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ฐฑ์ค] 1773๋ฒ: ํญ์ฃฝ์ผ(๊ตฌํ) (0) | 2020.05.03 |
---|---|
[๋ฐฑ์ค] 5612๋ฒ: ํฐ๋์ ์ ๊ตฌ์ ์ถ๊ตฌ (0) | 2020.05.01 |
[๋ฐฑ์ค] 5618๋ฒ: ๊ณต์ฝ์(์ํ) (0) | 2020.04.26 |
[๋ฐฑ์ค] 1302๋ฒ: ๋ฒ ์คํธ์ ๋ฌ(์ ๋ ฌ, ํ์) (0) | 2020.04.24 |
[๋ฐฑ์ค] 1940๋ฒ: ์ฃผ๋ชฝ(์ํ, ์ ๋ ฌ) (0) | 2020.04.23 |
๋๊ธ