https://www.acmicpc.net/problem/10172
아래 예제와 같이 개를 출력하시오.
없음.
아래와 같이 개를 출력한다.
public class Main {
public static void main(String[] args) {
System.out.println("|\\_/|");
System.out.println("|q p| /}");
System.out.println("( 0 )\"\"\"\\");
System.out.println("|\"^\"` |");
System.out.println("||_/=\\\\__|");
}
}
간단하게 이스케이프(escape)문자를 이용해서 푸는 문제다.
큰따옴표(")나 작은따옴표('), 백슬래시()를 출력하고 싶을 때 이스케이프 문자()를 앞에 붙여서 출력을 하면 된다.