[JAVA] PrintStream 클래스의 printf 메소드 사용

JoJo·2023년 7월 11일
0
post-custom-banner

💡 printf 메소드

printf 메소드는 특정 서식을 포함하여 출력할 때 사용합니다.


📌 사용 양식

System.out.printf(String format, Object_args)

Format
%d : 정수
%f : 실수
%s : 문자열
%c : 문자

📌 사용 예시

System.out.printf("정수 출력 : %d\n", 11);
System.out.printf("실수 출력 : %f\n", 10.26);
System.out.printf("문자열 출력 : %s\n", "자바 printf 문자열 출력");
System.out.printf("%c반 %s과정 %.2f개강 %.2f종강 입니다.\n"
		, 'F'
        , "공공데이터 개발자"
        , 5.15
        , 10.26);

profile
꾸준히
post-custom-banner

0개의 댓글