[Java] 변수, 진법, 기본형, 형변환
package oop20230411;
public class PrintEx2 {
public static void main(String[]args) {
System.out.println(10); // 10진정수 출력 / 숫자 데이터로 출력
System.out.println(010); // 8진 정수 출력
System.out.println(0x10); // 16진 정수 출...
wowssun.hashnode.dev4 min read