摘要: # 用户交互 Scanner ``` java package study5ran2yl.study; import java.util.Scanner; public class demo09 { public static void main(String[] args) { Scanner s 阅读全文
posted @ 2022-04-23 21:24 回忆也交给时间 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-22 19:53 回忆也交给时间 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-21 16:34 回忆也交给时间 阅读(18) 评论(0) 推荐(0) 编辑
摘要: public class demo07 { public static void main(String[] args) { int a = 10; int b = 20; a+=b;//a=a+b a-=b;//a=a-b System.out.println(a); //字符串连接符 +____ 阅读全文
posted @ 2022-04-21 15:59 回忆也交给时间 阅读(26) 评论(0) 推荐(0) 编辑
摘要: public class demo06 { public static void main(String[] args) { /* 位运算 A= 0011 1100 B= 0000 1101 A&B = 0000 1100 //只有都是 1 的时候才为 1 其余时候都是 0 A|B = 0011 1 阅读全文
posted @ 2022-04-21 15:22 回忆也交给时间 阅读(10) 评论(0) 推荐(0) 编辑
摘要: # 运算符 ``` java public class demo05 { public static void main(String[] args) { long a=123456788l; int b =520 ; short c= 20; byte d=10; System.out.print 阅读全文
posted @ 2022-04-20 19:22 回忆也交给时间 阅读(9) 评论(0) 推荐(0) 编辑
摘要: public class demo04 { //类变量:static static double salary = 2500; final static double pi = 3.14; // 属性:变量 //实例变量:从属于对象;如不进行初始化就会被赋予默认值 0 0.0 null //布尔值默 阅读全文
posted @ 2022-04-20 18:53 回忆也交给时间 阅读(17) 评论(0) 推荐(0) 编辑
摘要: public class demo03 { public static void main(String[] args) { int a=125; byte i=(byte)a; System.out.println(i); //强制转换:低-->高 //自动转换:高-->低 /*注意点: 1.不能 阅读全文
posted @ 2022-04-19 23:17 回忆也交给时间 阅读(6) 评论(0) 推荐(0) 编辑
摘要: public class demo02 { public static void main(String[] args) { //整数拓展: 进制:二进制0b 八进制0 十进制 十六进制0x int i=0b10; int i1=010; int i2=0x10; System.out.printl 阅读全文
posted @ 2022-04-19 22:11 回忆也交给时间 阅读(13) 评论(0) 推荐(0) 编辑
摘要: public class demo01 { public static void main(String[] args) { //类名可用中文也可用英文,但是不建议用中文 String 王者荣耀="百星王者"; //String 王者荣耀="倔强青铜"; //大小写敏感,大写和小写完全是两个类名 S 阅读全文
posted @ 2022-04-19 11:39 回忆也交给时间 阅读(8) 评论(0) 推荐(0) 编辑