• 코드:
​x
 
1
import java.io.IOException;
2
​
3
public class prog {
4
    public static void main(String[] args) {
5
        byte[] list = {'a', 'b', 'c'};
6
        
7
        try {
8
            System.out.write(list);
9
        } catch (IOException e) {
10
            e.printStackTrace();
11
        }
12
    }
13
}
표준입력 & 실행옵션