java Write a program to calculate the sum of first 10 natural number. code example
Example: Java program to find the sum of first 100 numbers
int sum = 0;
for(int i = 1; i <= 100; i++) {
sum = sum + i;
}
System.out.println("Sum of first 100 numbers is : " + sum);