[BOJ][11718] 그대로 출력하기
Updated:
1. 문제 링크
https://www.acmicpc.net/problem/11718
2. 사용 알고리즘
구현
3. 풀이
문자열 출력 (공백 포함)
-
C++ : getline(cin, s)
-
JAVA : s = br.readLine()
4. 소스 코드
4-1. C++
https://github.com/dev-aiden/problem-solving/blob/main/boj/11718.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
#include <string>
using namespace std;
int main(void) {
ios_base::sync_with_stdio(false);
string s;
while (getline(cin, s)) {
cout << s << '\n';
}
return 0;
}
4-2. JAVA
https://github.com/dev-aiden/problem-solving/blob/main/boj/11718.java
1
2
3
4
5
6
7
8
9
10
11
12
13
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s;
while((s = br.readLine()) != null) {
System.out.println(s);
}
}
}
Leave a comment