Software Testing -- LAB03-soot的使用

Posted 陈煜弘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Software Testing -- LAB03-soot的使用相关的知识,希望对你有一定的参考价值。

1.生成dot

2.根据生成的dot生成png图

 

3.结果:

 

4.使用代码

    

package prime;

public class Prime{
public static void main(String[] args) {
        // TODO Auto-generated method stub
        int n = 2;while(n < 200){
            boolean isPrime=false;
            for(int i = 2; i < n; i++) { 
                if(n % i == 0)  {  
                    isPrime = true;   
                    break; 
                    } 
                } 
            if(isPrime==false) { 
                System.out.println(n);
            } 
            n++;
        }
    }
}

 

  

 

  

以上是关于Software Testing -- LAB03-soot的使用的主要内容,如果未能解决你的问题,请参考以下文章

Software Testing, Lab 1

SOFTWARE TESTING LAB 01

Software Testing Lab1

Software Testing_Lab 2_selenium

Software Testing Lab 1

Software Testing lab01