摘要: public class Demo05 { public static void main(String[] args){ int a = 5; int b = 6; //字符串连接符 + String System.out.println(a+b+""); System.out.println(" 阅读全文
posted @ 2024-08-18 23:35 怂蛋本蛋 阅读(16) 评论(0) 推荐(0)
摘要: `public class demo02 { public static void main(String[] args) { //进制 二进制 十进制 八进制0 十六进制0x 0~9 A~F //int a = 010; int b = 0x11; //int c = a + b; //Syste 阅读全文
posted @ 2024-08-18 00:48 怂蛋本蛋 阅读(18) 评论(0) 推荐(0)