백준 자바 코딩테스트1 [JAVA] Hello World! 백준에서 문제 풀 때, class명이 Main이여야 한다. 첫 번째 방법 public class Main { public static void main(String[] args){ String greeting = "Hello World!"; System.out.println(greeting); } } 두 번째 방법 import java.io.BufferedWriter; import java.io.OutputStreamWriter; import java.io.IOException; public class Main { public static void main(String[] args) throws IOException { BufferedWriter greet = new BufferedWriter(new O.. 2023. 3. 1. 이전 1 다음