摘要:
1 package com.jdk7.chapter4; 2 3 public class PrimeNumber { 4 public void getPrime(int range){ 5 boolean[] sourceData = this.isPrime(range); 6 7 if(!(sourceData==... 阅读全文
摘要:
1 package com.jdk7.chapter4; 2 3 import java.text.DecimalFormat; 4 import java.util.Arrays; 5 6 /** 7 * 数组的加减乘除 8 * @author Administrator 9 * 10 */ 11 12 public class Matr... 阅读全文