Find elements

Java program to calculate sum of odd and even numbers

Java program to calculate the sum of odd and even numbers

In this tutorial, we will discuss The Java program to calculate sum of odd and even numbers

In this article, we are going to learn the how to  calculate the sum of odd and even numbers in the Java program

 

What is even or odd numbers?

When any integer value which ends in 0,2,4,6,8 is divided by two it is called as an even number

Example for even numbers – 34,-64,78,788

When any integer value which ends in 0,1,3,5,7,9 is not divided by two it is called as an odd number

Example for odd numbers – 33,-69,75,785

 

We can use a modular operator to find odd or even number in the given range.

if n%2==0,  n is an even number

if n%2==1,  n is an odd number

 

Calculate the sum of odd and even numbers using for loop

Program 1

This program allows the user to enter a maximum number of digits and then, the program will sum up to odd and even numbers from 1 to entered digits using a for loop.

import java.util.Scanner;
class OddEvenSum{
public static void main (String args[]){
int i,num;  //declare variable i,num
int oddSum=0,evenSum=0;
//declare and initialize variables oddSum,evenSum

Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Enter the number for num: \n");
num=scan.nextInt();//reads num1 from user

for(i=1; i<=num; i++){  
if(i%2==0) 
    evenSum=evenSum+i;
else
    oddSum=oddSum+i;
}
System.out.println("Sum of all odd numbers are: "+oddSum);
System.out.println("Sum of all even numbers are: "+evenSum);
}
}

When the above code is executed, it produces the following results

Enter the number for num:
10
Sum of all odd numbers are: 25
Sum of all even numbers are: 30

 

Calculate the sum of odd and even numbers using while loop

Program 2

This program allows the user to enter a maximum number of digits and then, the program will sum up to odd and even numbers  from 1 to entered digits using a while loop.

import java.util.Scanner;
class OddEvenSumWhile{
public static void main (String args[]){
int i,num;  //declare variable i,num
int oddSum=0,evenSum=0;
//declare and initialize variables oddSum,evenSum

Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Enter the number for num: \n");
num=scan.nextInt();//reads num1 from user

i=1;
while(i<=num){  
if(i%2==0) 
    evenSum=evenSum+i;
else
    oddSum=oddSum+i;
 i++
}
System.out.println("Sum of all odd numbers are: "+oddSum);
System.out.println("Sum of all even numbers are: "+evenSum);
}
}

 

When the above code is executed, it produces the following results

Enter the number for num:
100
Sum of all odd numbers are: 2500
Sum of all even numbers are: 2550

 

Calculate the sum of odd and even numbers using do-while loop

Program 3

This program allows the user to enter a maximum number of digits and then, the program will sum up to odd and even numbers from 1 to entered digits using a do-while loop.

import java.util.Scanner;
class OddEvenSumDoWhile{
public static void main (String args[]){
int i,num;  //declare variable i,num
int oddSum=0,evenSum=0;
//declare and initialize variables oddSum,evenSum

Scanner scan=new Scanner(System.in);
//create a scanner object for input

System.out.print("Enter the number for num: \n");
num=scan.nextInt();//reads num1 from user

i=1;
do{  
if(i%2==0) 
    evenSum=evenSum+i;
else
    oddSum=oddSum+i;
 i++;
}while(i<=num);
System.out.println("Sum of all odd numbers are: "+oddSum);
System.out.println("Sum of all even numbers are: "+evenSum);
}
}

 

When the above code is executed, it produces the following results

Enter the number for num:
50
Sum of all odd numbers are: 625
Sum of all even numbers are: 650

 

 

 

Suggested for you

for loop in Java

while loop in Java

if statements in Java

operator in Java

 

Similar post

C program to find a number is even or odd using the function

C program to separate Odd and Even numbers from an array

C program to Electricity bill calculation using the function

C program to display all even and odd numbers from 1 to n

C program display odd and even numbers without if statements

C program to calculate the sum of odd and even numbers

C program to find whether a number is even or odd

 

C++ program to find a number is even or odd using the function

C++ program to separate Odd and Even numbers from an array

C++ program to display all even and odd numbers from 1 to n

C++ program calculate Average of odd and even numbers in an array 

C++ program to calculate the sum of odd and even numbers

C++ program to find whether a number is even or odd

 

Java program to find a number is even or odd using the method

Java program to separate Odd and Even numbers from an array

Java program to display all even and odd numbers from 1 to n

Java program display odd and even numbers without if statements

Java program to calculate the sum of odd and even numbers

Java program to find whether a number is even or odd

 

Python program check whether a number is odd or even

Python program to check a number is even or odd using the function

Python program to display even and odd numbers without if

Python program to display even and odd number in the given range

Separate odd and even numbers in a list to different two list

Python Program to find odd and even numbers from a list

 

Java program to calculate sum of odd and even numbers

C++ program to calculate sum of odd and even numbers

Python program to calculate sum of odd and even numbers

program to display even and odd number in the given range
Cpp program to calculate sum of odd and even numbers
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

How to find reverse number using method in Java

How to find reverse number using method In this article, we will discuss the concept…

2 days ago

C# inverted full pyramid star pattern

C# inverted full pyramid star pattern In this article, we will discuss the concept of…

3 weeks ago

C# Full Pyramid star pattern program

C# Full Pyramid star pattern program In this article, we will discuss the concept of…

1 month ago

Program to count vowels,consonants,words, characters and space in Java

Program to count vowels, consonants, words, characters and space in Java In this article, we…

1 month ago

How to print multiplication table using Array in C++ language

How to print multiplication table using Array in C++ language In this post, we will…

1 month ago

C Program to multiplication table using Array

C Program to multiplication table using Array In this tutorial , we will discuss about…

2 months ago