- 博客(2)
- 收藏
- 关注
原创 二分法数组元素查找
public class ArraySearch { //主方法测试查找数值为34的元素下标 public static void main(String[] args) { int[] arr = { 1, 34, 56, 67, 78, 231, 656 }; System.out.println(arraySearch(arr, 34)); } //二分法查找元素封装方法 public static int arraySearch(int arr[], int de..
2021-07-22 20:22:30 91
原创 Java实现酒店管理系统
定义Room类包含房间号、房间种类和房间状态三个属性 public class Room { private int no; private String type; boolean statu; public int getNo() { return no; } public void setNo(int no) { this.no = no; } public String getType() { return type; } public void se.
2021-07-22 14:28:14 188
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人