Describe the flow chat of the program | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
- 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); } }

14th Feb 2021, 4:41 AM
SATYA SUMAN SAHOO
SATYA SUMAN SAHOO - avatar
1 Respuesta
0
I don’t understand what you mean. Are you asking us to debug your program?
15th Feb 2021, 10:12 PM
Wilbur Jaywright
Wilbur Jaywright - avatar