- 1
Describe the flow chat of the program
class Test { public static void main (String [] args) { m1(1); } public static void m1(int i) { System.out.println(i); if(i==3) return; m1 (i+1); System.out.println(i); } }
1 Answer
0
I donât understand what you mean. Are you asking us to debug your program?