Print n numbers using recursion Get link Facebook X Pinterest Email Other Apps - July 22, 2021 The following is the java method to print n numbers using recursion :- public static void print(int n) { if (n == 0) return; print(n - 1); System.out.print(n + " "); } Read more