PL/JAVA
명품 자바 프로그래밍 1장 실습 문제
poopooreum
2024. 6. 18. 21:44
반응형
✏️ 1 - 1
package ex;
public class Welcome {
public static void main(String[] args) {
System.out.println("Welcome!");
System.out.println("자바 세계로 오신 것을 환영합니다.");
}
}
✏️ 1 - 2
package ex;
public class Sorry {
public static void main(String[] args) {
System.out.println("Sorry~");
System.out.println("재밌어서 미안합니다~~");
}
}
반응형