2022年6月28日
摘要: public class Demo06 { public static void main(String[] args) { //int a,b,c; //int a = 1;b = 2;c = 3;//程序的可读性 String name = "yangyue"; char x = 'Y'; do 阅读全文
posted @ 2022-06-28 17:05 一枚努力学习的小白 阅读(19) 评论(0) 推荐(1) 编辑
摘要: 类型转换 import com.sun.management.VMOption; public class Demo03 { public static void main(String[] args) { // ①整数扩展: // 进制 二进制0b 十进制 八进制0 十六进制0x int i = 阅读全文
posted @ 2022-06-28 17:01 一枚努力学习的小白 阅读(7) 评论(0) 推荐(1) 编辑
摘要: 数据类型 字节 public class Demo02 { public static void main(String[] args) { String a = "hello"; int num = 10; System.out.println(a); System.out.println(num 阅读全文
posted @ 2022-06-28 16:53 一枚努力学习的小白 阅读(17) 评论(0) 推荐(1) 编辑