Skip to content

Commit

Permalink
Update Recursion1.java
Browse files Browse the repository at this point in the history
  • Loading branch information
arpitasawant authored Jan 4, 2024
1 parent 0648cc7 commit bbd8045
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Recursion1.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
public class Recursion1 {
public static void printNum(int n) {
// Program to print numbers from 5 to 1

// Program to print numbers from 5 to 1.....

if (n == 0) {
return;
}
Expand Down

0 comments on commit bbd8045

Please sign in to comment.