[백준/Java] 2557번 : Hello World!

SEOP·2023년 4월 21일
0

public class Main{
    public static void main(String[] args){
        System.out.println("Hello World!");
    }
}

OR

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
        bw.write("Hello World!");
        bw.flush();
        bw.close();
    }
}
profile
응애 나 애기 개발자

0개의 댓글