Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package dadaproject.company;
- import java.util.Scanner;
- public class Main {
- public static void main(String[] args) {
- int sum = natural(50);
- System.out.println("The sume is "+sum);
- }
- public static int natural(int n)
- {
- if(n==1){
- return 1;
- }
- else
- {
- return natural(n-1)+n;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement