Given the following program, convert the iterative version of the method m1 into the recursive version public class Test
Posted: Tue Jul 12, 2022 8:16 am
Given the following program, convert the iterative version ofthe method m1 intothe recursive version
public class Test {
public static void main(String[ ] args) {
int[ ] a = {10, 20,30, 40, 50};
m1(5);
}
public static void m1(int n) {
while (n >=1) {
System.out.println( n );
n = n - 1;
}
}
public class Test {
public static void main(String[ ] args) {
int[ ] a = {10, 20,30, 40, 50};
m1(5);
}
public static void m1(int n) {
while (n >=1) {
System.out.println( n );
n = n - 1;
}
}