이스케이프 시퀀스
23편. 콘솔 입출력(Console input and output)
23편. 콘솔 입출력(Console input and output)
2012.08.24콘솔 출력 자바에서는 지정한 형식에 맞춰서 문자열을 출력하는 System.out.printf() 메서드를 지원합니다. 이 메서드는 내부적으로 System.out.format() 메서드를 호출하며, 아래와 같이 사용할 수 있습니다. System.out.printf(문자열); System.out.printf(형식, 인수1, 인수2, ...); 인수(argument) vs 매개변수(parameter) 인수는 메서드를 호출할 때 전달되는 값, 변수, 참조를 말하며 매개변수는 함수 선언에서 정의할 수 있는 변수를 말합니다. // 여기서 a와 b를 매개변수(parameter)라고 합니다. static void func(int a, int b) { // ... } int num = 10; // 여기서 num과 5를 ..