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);
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);
to get sum of even digits java
//To find the sum of even digits in a given Number
public static int getEvenDigitSum(int number){
if(number<0){
return -1;
}
int finalNumber=0;
while(number>0){
if((number%10)%2==0){
finalNumber+=number%10;
}
number=number/10; //takes out last digit to test the next digit
}
return finalNumber;
}
//Output: ex:number=12323 -- Ans: 4
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us