알고리즘

백준 알고리즘 25083번: 새싹 - JAVA

zumsim 2024. 4. 29. 20:29
728x90
반응형

https://www.acmicpc.net/problem/25083

 

public class baekjoon1 {
    public static void main(String[] args) {
        String str = "         ,r'\"7\n" +
                   "r`-_   ,'  ,/\n" +
                   " \\. \". L_r'\n" +
                   "   `~\\/\n" +
                   "      |\n" +
                   "      |";
        
        System.out.println(str);
    }
}
cs

 

728x90
반응형