write a function to find the sum of first n numbers (1 to n ) in java 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);