반응형
[쉽게 배우는 자바 프로그래밍]
Chapter 03. 제어문과 메서드
프로그래밍 문제
9. 다음은 foo() 메서드가 빠진 프로그램 일부와 실행 결과이다. foo() 메서드를 완성하시오.
1 2 3 4 5 6 7 | public static void main(String[] args) { // TODO Auto-generated method stub foo("안녕", 1); foo("안녕하세요", 1, 2); foo("잘 있어"); } } |
안녕 1
안녕하세요 1 2
잘 있어
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | public static void main(String[] args) { foo("안녕", 1); foo("안녕하세요", 1, 2); foo("잘 있어"); } private static void foo(String string, int i) { System.out.printf("%s %d\n", string, i); } private static void foo(String string, int i, int j) { System.out.printf("%s %d %d\n", string, i, j); } private static void foo(String string) { System.out.printf("%s\n", string); } |
반응형
'JAVA 자바 > [쉽게 배우는 자바 프로그래밍] _프로그래밍 문제' 카테고리의 다른 글
Chapter 05. 문자열, 배열, 디버깅 _ 프로그래밍 01 (0) | 2018.11.22 |
---|---|
Chapter 03. 제어문과 메서드 10 (0) | 2018.11.18 |
Chapter 03. 제어문과 메서드 08 (0) | 2018.11.18 |
Chapter 03. 제어문과 메서드 07 (0) | 2018.11.18 |
Chapter 03. 제어문과 메서드 06 (0) | 2018.11.18 |