摘要: 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==... 阅读全文
posted @ 2018-02-07 22:33 celineluo 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 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... 阅读全文
posted @ 2018-02-07 20:24 celineluo 阅读(401) 评论(0) 推荐(0) 编辑