문제
https://www.acmicpc.net/problem/5339
5339번: 콜센터
스타워즈에 등장하는 로봇인 C3PO는 요즘 콜센터에 근무하고 있다. 콜센터에 앉아있는 C3PO를 그리는 프로그램을 작성하시오.
www.acmicpc.net
내가 작성한 코드
import java.io.*;
public class 백준5339 {
public static void main(String[] args) throws IOException {
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
bw.write(" /~\\");
bw.newLine();
bw.write(" ( oo|");
bw.newLine();
bw.write(" _\\=/_");
bw.newLine();
bw.write(" / _ \\");
bw.newLine();
bw.write(" //|/.\\|\\\\");
bw.newLine();
bw.write(" || \\ / ||");
bw.newLine();
bw.write("============");
bw.newLine();
bw.write("| |");
bw.newLine();
bw.write("| |");
bw.newLine();
bw.write("| |");
bw.close();
}
}
'자바 > 백준' 카테고리의 다른 글
[백준 5597] 과제 안 내신 분..? (0) | 2022.08.16 |
---|---|
[백준 5522] 카드 게임 (0) | 2022.08.09 |
[백준5338] 마이크로소프트 로고 (0) | 2022.08.09 |
[백준 5337] 웰컴 (0) | 2022.08.09 |
[백준 4999] 아! (0) | 2022.08.09 |