반응형

[쉽게 배우는 자바 프로그래밍] 

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("안녕하세요"12);
        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("안녕하세요"12);
        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);
    }



반응형