JAVA_04_printf() & println()
println()
-
단점 1 : 실수의 자리수 조절 불가
-
단점 2 : 10진수로만 출력
printf()
- 출력 형식 지정 가능
- 2진수 출력 지시자는 없고 대신에
System.out.printf("%s", Integer.toBinaryString(15)); //1111
나머지는
public class datatype1 {
public static void main(String[] args) {
System.out.println(6); //number
System.out.println("six"); //string
System.out.println("6"); //string 6
System.out.println(6+6); // 12
System.out.println("6"+"6"); // 66
System.out.println(6*6); //36
// System.out.println("6"*"6"); //error
System.out.println("1111".length()); //4
// System.out.println(1111.length()); //error
System.out.println("Hello World"); //string 문자열
System.out.println('H'); //char 문자
System.out.println("H");
}
}
Ref
Author And Source
이 문제에 관하여(JAVA_04_printf() & println()), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@lecharl/JAVA04저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)