MCPcopy Create free account
hub / github.com/apna-college/Alpha / printDec

Method printDec

7_RecursionBasics/RecursionBasics.java:2–9  ·  view source on GitHub ↗
(int n)

Source from the content-addressed store, hash-verified

1public class RecursionBasics {
2 public static void printDec(int n) {
3 if(n == 1) {
4 System.out.println(n);
5 return;
6 }
7 System.out.print(n+" ");
8 printDec(n-1);
9 }
10
11 public static void printInc(int n) {
12 if(n == 1) {

Callers

nothing calls this directly

Calls 1

printMethod · 0.45

Tested by

no test coverage detected