Find elements

C program to calculate sum of odd and even numbers

C program to calculate sum of odd and even numbers

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

In this article, we are going to learn the concept of how to  calculate the sum of odd and even numbers in the C 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,-62,58,890

 

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 : 21,567,-57,67

 

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.

 

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int i, num;  //declare variables i, num
    int oddSum=0,evenSum=0;
    //declare and initialize variables oddSum,evenSum
    printf("Enter the value of num \n");
    scanf("%d",&num);
    for(i=1; i<=num; i++){// for loop use  to iterate 1 to num
        if(i%2==0)  //Check even number for sum
            evenSum=evenSum+i;
        else
            oddSum=oddSum+i;
    }
    printf("Sum of all odd numbers are: %d",oddSum);
    printf("\nSum of all even numbers are: %d",evenSum);
    getch();
    return 0;
}

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

case 1

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

case 2

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

 

Calculate 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.

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int i, num;  //declare variables i, num
    int oddSum=0,evenSum=0;
    //declare and initialize variables oddSum,evenSum
    printf("Enter the value of num \n");
    scanf("%d",&num);

    i=1;
    while(i<=num){// for loop use  to iterate 1 to num
        if(i%2==0)  //Check even number for sum
            evenSum=evenSum+i;
        else
            oddSum=oddSum+i;
             i++;
    }
    printf("Sum of all odd numbers are: %d",oddSum);
    printf("\nSum of all even numbers are: %d",evenSum);
    getch();
    return 0;
}

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

case 1

Enter the value of num
12
Sum of all odd numbers are: 36
Sum of all even numbers are: 42

 

case 2

Enter the value of num
200
Sum of all odd numbers are: 10000
Sum of all even numbers are: 10100

 

Calculate 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.

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int i,num; //declare variable i, num
    int oddSum=0,evenSum=0;
//declare and initialize variables oddSum,evenSum
    printf("Enter the number for num\n");
    scanf("%d",&num);//read the number from user

    i=1;
do{
if(i%2==0)
    evenSum=evenSum+i;
else
    oddSum=oddSum+i;
 i++;
}while(i<=num);
printf("Sum of all odd numbers are: %d ",oddSum);
printf("\nSum of all even numbers are:%d ",evenSum);
getch();
    return 0;
}

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

case 1

Enter the value of num
150
Sum of all odd numbers are: 5625
Sum of all even numbers are: 5700

 

 

Suggested for you

for loop in C language

while loop in C language

if statements in C language

 

Similar post

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

Cpp program to calculate sum of odd and even numbers
Python 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.

View Comments

Recent Posts

PHP Star Triangle pattern program

PHP Star Triangle pattern program In this tutorial, we will discuss about PHP Star Triangle…

1 month ago

PHP Full Pyramid pattern program

PHP Full Pyramid pattern program In this tutorial, we will discuss about PHP Full Pyramid…

2 months ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

2 months ago

Python Full Pyramid star pattern program

Python full Pyramid star pattern program In this tutorial, we will discuss  the concept of…

5 months ago

Write a function or method to convert C into F -Entered by user

Write a function or method to convert C into F -Entered by the user In…

10 months ago

How to write a function or method to convert Celsius into Fahrenheit

How to write a function or method to convert Celsius into Fahrenheit In this tutorial,…

10 months ago