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