작성일 :

문제 링크

10172번 - 개

설명

ASCII 그림으로 강아지를 출력하는 문제입니다.

\ 문자는 이스케이프 문자로도 사용된다는 점에 주의해야 합니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Solution {
  class Program {
    static void Main(string[] args) {

      Console.WriteLine("|\\_/|");
      Console.WriteLine("|q p|   /}");
      Console.WriteLine("( 0 )\"\"\"\\");
      Console.WriteLine("|\"^\"`    |");
      Console.WriteLine("||_/=\\\\__|");

    }
  }
}



[ C++ ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  cout << "|\\_/|\n"
       << "|q p|   /}\n"
       << "( 0 )\"\"\"\\\n"
       << "|\"^\"`    |\n"
       << "||_/=\\\\__|\n";

  return 0;
}