摘要:
数组: 相同类型的数据(可以是基本类型也可以是引用类型)的集合,方便管理。 定义: 数据类型[] 数组名字; 初始化: 创建数组,赋值 静态初始化: import java.util.*; class test{ public static void main(String[] args){ int 阅读全文
摘要:
1. 顺序结构 2. 分支结构 if(){ } else{ } switch: class test{ public static void main(String[] args){ int x = 6; switch(x){ case 1: System.out.println("a"); bre 阅读全文