摘要:
使用二分法在一个数组中查找一个数: package com.test; public class BinaryFind {private final static int size = 500000;public static void main(String[] args) {int[] a = 阅读全文
摘要:
乘法表: package com.test; import org.junit.Test; public class TestSwitch { @Test public void test() { for (int i = 1; i < 10; i++) { System.out.p... 阅读全文