码迷,mamicode.com
首页 > 其他好文 > 详细

printPrimes作业

时间:2016-03-31 21:42:58      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

(a)

 

(b)

数组越界问题

(c)

n=0

 

(d)

 

点覆盖:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]

 

边覆盖:[(1,2), (2,3),(3,4),(4,5),(5,6),(6,7),(7,5),(6,8),(8,9),(5,9),(9,10),(10,11),(11,2),(2,12),(12,13),(13,14),(14,15),(15,13),(13,16)]

 

主路径覆盖:

 

[1,2,3,4,5,6,7]

 

[1,2,3,4,5,9,10,11]

 

[1,2,3,4,5,9,11]

 

[1,2,3,4,5,6,8,9,10,11]

 

[1,2,3,4,5,6,8,9,11]

 

[1,2,12,13,14,15]

 

[1,2,12,13,16]

 

 

 

[2,3,4,5,6,8,9,10,11,2]

 

[2,3,4,5,6,8,9,11,2]

 

[2,3,4,5,9,10,11,2]

 

[2,3,4,5,9,11,2]

 

 

 

 

[3,4,5,6,8,9,10,11,2,12,13,14,15]

 

[3,4,5,6,8,9,10,11,2,12,13,16]

 

[3,4,5,6,8,9,11,2,12,13,14,15]

 

[3,4,5,6,8,9,11,2,12,13,16]

 

[3,4,5,9,10,11,2,12,13,14,15]

 

[3,4,5,9,11,2,12,13,14,15]

 

[3,4,5,9,10,11,2,12,13,16]

 

[3,4,5,9,11,2,12,13,16]

 

 

 

[5,6,7,5]

 

 

 

 

[6,7,5,9,10,11,2,12,13,14,15]

 

[6,7,5,9,11,2,12,13,14,15]

 

[6,7,5,9,10,11,2,12,13,16]

 

[6,7,5,9,11,2,12,13,16]

 

 

 

[13,14,15,13]

 

 

 

[14,15,13,16]

 

代码

 

import static org.junit.Assert.*;
 
import org.junit.Test;
 
import static org.junit.Assert.*;
 
import org.junit.Test;
 
public class TestPrimes {
 
    @Test
    public void testPrintPrimes() {
        printPrimes pp = new printPrimes();
        pp.printPrimes(10);
         
    }
 
}

printPrimes作业

标签:

原文地址:http://www.cnblogs.com/cuiyonghao/p/5342750.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!