摘要: package array; public class Demo02 { public static void main(String[] args) { //静态 int[] a = {1,2,3}; int[] b = new int[3]; b[0]=5; b[1]=6; b[2]=7; Sy 阅读全文
posted @ 2024-11-28 18:13 whoiszqy 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 快捷键 ctrl+D,复制当前行到下一行 与或非 package org.example; public class demo02 { public static void main(String[] args) { boolean a = true; boolean b=false; System 阅读全文
posted @ 2024-11-26 18:30 whoiszqy 阅读(9) 评论(0) 推荐(0) 编辑
摘要: JAVA public class Helloworld { public static void main(String[] args) { System.out.println("Hello,World!"); } } 注释 单行注释 // 注释 多行注释 /* 注释*/ 八大基本数据类型 // 阅读全文
posted @ 2024-11-22 18:24 whoiszqy 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Makedown语法 列表 A B C A B 超链接 哔哩哔哩 表格 名字 姓别 张三 男 代码 public 阅读全文
posted @ 2024-11-20 15:35 whoiszqy 阅读(2) 评论(0) 推荐(0) 编辑