자바(자료표현)

2984 단어 자바자바

🅹자바 -자료표현-

package chapter2;

public class Binarytest {

	public static void main(String[] args) {
		int num = 10; 
		int bNum = 0B1010;
		int oNum = 012;
		int xNum = 0XA;  
		// 0B,0X 소문자도 가능 
		
		System.out.println(num);
		System.out.println(bNum);
		System.out.println(oNum);
		System.out.println(xNum);
	}

}
  • 10진수를 쓸 때는 그냥 쓴다.
  • 2진수를 쓸 때는 앞에 0B(소문자가능)를 붙이고 2진수를 쓴다.
  • 8진수를 쓸 때는 앞에 0을 붙이고 8진수를 쓴다.
  • 16진수를 쓸 때는 앞에 0X(소문자가능)를 붙이고 16진수를 쓴다.

좋은 웹페이지 즐겨찾기