Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

Control flow graph generator

public  void method3( int i){
	if (i == 10)  
		System.out.println("i is 10");  
	else if (i == 15) 
		System.out.println("i is 15"); 
	else if (i == 20)  
		System.out.println("i is 20");  
	else
    	     System.out.println("i is not present");  
}
Source by compilers.cs.ucla.edu #
 
PREVIOUS NEXT
Tagged: #Control #flow #graph #generator
ADD COMMENT
Topic
Name
6+1 =