Java Program to print sum of first 10 natural numbers


In this program, You will learn how to print the sum of the first 10 natural numbers in java.


Natural numbers is: 1 2 3 4 5 6 7 8 9 10

Example: How to print the sum of the first 10 natural numbers in java.

import java.util.Scanner;

class Main {
    public static void main(String args[]) {

        int i,s=0;

        for(i = 1;i <= 10; i++){
            s = s + i;
        }

        System.out.println("Sum of 10 natural numbers:"+s);

    }
}

Output:

Sum of 10 natural numbers:55