println()
단점 1 : 실수의 자리수 조절 불가
단점 2 : 10진수로만 출력
printf()
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");
}
}