/**
*
* Ashish Patel
* e: ashishsushilPatel@gmail.com
* w: https://ashish.me
*
*/
public class PrintNTo1 {
static void func(int n){
if(n == 0){
return;
}
System.out.println(n);
func(n-1);
}
public static void main(String[] args){
func(5);
}
}
Created 2021-10-19T00:57:26+01:00, updated 2021-10-19T10:51:48+01:00 · History · Edit