Answers for "write a java program that returns the sum of all the even numbers which are less than or equal to n"

0

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);
Posted by: Guest on November-11-2020

Code answers related to "write a java program that returns the sum of all the even numbers which are less than or equal to n"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language