[C++][백준 25083] 새싹

PublicMinsu·2024년 6월 27일
0

문제

접근 방법

문자열에서 \을 출력하려면 어떻게 해야 할지 알아야 한다.

코드

#include <iostream>
using namespace std;
int main()
{
    ios::sync_with_stdio(0), cin.tie(0);
    cout << "         ,r\'\"7\n"
         << "r`-_   ,\'  ,/\n"
         << " \\. \". L_r'\n"
         << "   `~\\/\n"
         << "      |\n"
         << "      |";
    return 0;
}

풀이

\을 출력할 땐 \\의 형태로 작성해야 출력된다.

profile
연락 : publicminsu@naver.com

0개의 댓글