자바(자료표현)
🅹자바 -자료표현-
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진수를 쓴다.
Author And Source
이 문제에 관하여(자바(자료표현)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@sdk1926/자바자료표현
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
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);
}
}
Author And Source
이 문제에 관하여(자바(자료표현)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@sdk1926/자바자료표현저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)