sum of all even numbers from 0 to 100 code example
Example: Java program to find the sum of all even numbers from 1 to 10
int sum = 0;
for (int i = 1; i <= 10; i++) {
// Logic for sum of EVEN
if (i % 2 == 0) {
sum = sum + i;
}
}
System.out.println("Sum of all even from 1 to 10 is: " + sum);