Java example program
import java.util.*;
class ASC
{
static int sum(int n)//5
{
if(n==0)//0==0
return 0;
else
return n+sum(n-1);
}
public static void main(String args[])
{
int result=sum(5);
System.out.println(result);
}
}
Start learning today with our wide range of courses taught by industry experts. Gain new skills, advance your career, or explore new interests.
Browse CoursesJava example program
import java.util.*;
class ASC
{
static int sum(int n)//5
{
if(n==0)//0==0
return 0;
else
return n+sum(n-1);
}
public static void main(String args[])
{
int result=sum(5);
System.out.println(result);
}
}
Start learning today with our wide range of courses taught by industry experts. Gain new skills, advance your career, or explore new interests.
Browse CoursesLearn the fundamentals of programming with Python in this beginner-friendly course.
Master the basics of data analysis, visualization, and machine learning.
Build modern websites with HTML, CSS, JavaScript and popular frameworks.
Learn SEO, social media marketing, email campaigns and analytics.