Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- UE_LOG
- map
- 자료구조
- 알고리즘
- dataasset
- 람다
- 데이터애셋
- 강참조
- 언리얼엔진구조체
- C++최적화
- BFS
- UML관련
- moreeffectiveC++
- 람다사용정렬
- 애셋로드
- 크리티컬섹션
- UE4 커스텀로그
- C++
- 선택정렬
- stl
- unorder_map
- enumasByue
- UELOG
- 스마트포인터
- 프로그래머스
- 정렬알고리즘
- 정렬
- 언리얼가비지컬렉터
- 델리게이트
- 약참조
Archives
- Today
- Total
기억을 위한 기록들
[백준 11718: 그대로 출력하기] - C++ 본문
#include<iostream>
#include<string>
using namespace std;
int main() {
string str;
while (true) {
getline(cin, str);
if (str == "\0")
break;
cout << str << endl;
}
return 0;
}
'Coding Test - cpp > String' 카테고리의 다른 글
[프로그래머스 lv 2 ] - 오픈채팅방 (0) | 2021.09.08 |
---|---|
[HackerRank/C++] Repeated String (0) | 2021.07.25 |
[백준 11721: 열 개씩 끊어 출력하기] - C++ (0) | 2021.03.25 |
[백준 1316: 그룹 단어 체커] - C++ (0) | 2021.02.19 |
[백준 9012: 괄호] - C++ (0) | 2021.02.19 |