언어 공부 내용 정리/백준

백준 자바 10172

wosrn 2023. 5. 18. 20:37

package Baekjoon;
import java.util.Scanner;

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("||_/=\\\\__|"); //이스케이프 \\
    }
	
	//자바에서 이스케이프(\) 사용해야 출력가능한 문자는 " , ' , \
}
//
//
//|\_/|
//|q p|   /}
//( 0 )"""\
//|"^"`    |
//||_/=\\__|