摘要:
public class demo03 { public static void main(String[] args) { // 整数拓展: 二进制0b 八进制0 十进制 十六进制0x int i = 10; int i2 = 03; int i3 = 0b11; int i4 = 0x17;// 阅读全文
摘要:
import java.sql.SQLOutput;public class demo02 { public static void main(String[] args) { //八大基本数据类型 //整数表示 int num1 = 520;//最常用 byte num2 = 1; short n 阅读全文