반응형
1. Welcome!!을 출력하는 자바 프로그램을 작성하라.
public static void main(String[] args) {
System.out.print("Welcome!!");
}
2. Sorry~~를 출력하는 자바 프로그램을 작성하라.
public static void main(String[] args) {
System.out.print("Sorry~~");
}
3. "1 2 3 4 5 6 7 8 9"를 출력하는 자바 프로그램을 작성하라.
public static void main(String[] args) {
System.out.print("1 2 3 4 5 6 7 8 9");
}
Open Challenge문제.
실행결과는 다음과 같다. 지시대로 자바 응용프로그램을 작성하라.
public static void main(String[] args) {
System.out.println("Kitae Hwanh");
System.out.println("20 years old");
System.out.print("Department of Computer Engineering");
}
'Algorithm > 명품 JAVA 에센셜' 카테고리의 다른 글
명품 JAVA 에센셜 3장 실습 문제 풀이 (1) | 2023.11.28 |
---|---|
명품 JAVA 에센셜 2장 실습 문제 풀이 (2) | 2023.11.28 |