JAVA_04_printf() & println()

2398 단어 JavaJava

println()

  • 단점 1 : 실수의 자리수 조절 불가

  • 단점 2 : 10진수로만 출력

printf()

  • 출력 형식 지정 가능

  • 2진수 출력 지시자는 없고 대신에
System.out.printf("%s", Integer.toBinaryString(15));	//1111

나머지는

자바의정석 지시자2

지시자3



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

좋은 웹페이지 즐겨찾기