본문 바로가기
1. Java 자바/1_0. 책, 강의

[명품 자바 프로그래밍] 1장 52쪽 오픈 챌린지_정답

by 비소야 2022. 5. 23.
728x90

[명품 자바 프로그래밍] 1장 52쪽 오픈 챌린지_정답

 

1장 자바 시작

 

1
2
3
4
5
6
7
8
public class MyInfoApp {                                                
    public static void main(String[] args) {                            
        // 이름, 나이, 학과 출력
        System.out.println("Kitae Hwang");
        System.out.println("20 years old");
        System.out.println("Department of Computer Engineering");
    }
}
cs

 

728x90