C program for find even & odd no.s in the array , C/C++ Programming

Assignment Help:

C Program for FIND EVEN & ODD NO.S IN THE ARRAY

#include stdio.h>

#include string.h>

#include conio.h>

void main()

{

          int i=0,j=0, l_e[100],l_o[100];

          int a[100],odd=0,even=0,sum_even=0,sum_odd=0;

          float avg_e=0,avg_o=0;

          for(i=0;i<100;i++)

          {

                   a[i]=0;

                   l_e[i]=0;

                   l_o[i]=0;

          }

          i=0;    clrscr();

          printf("\nENTER THE LIMIT OF ELEMENTS: ");

          scanf("%d",&j);

          for(i=0;i

          {

                   printf("\nENTER THE NO %d: ",i+1);

                   scanf("%d",&a[i]);

                    if(a[i]%2==0)

                   {

                             sum_even=sum_even+a[i];

                             even++;

                             avg_e=sum_even/even;

                             l_e[i]=a[i];

                   }

                   else

                   {

                             sum_odd=sum_odd+a[i];

                             odd++;

                             avg_o=sum_odd/odd;

                             l_o[i]=a[i];

                   }

          } i=0;

          printf("\nTHE EVEN NO.S ARE %d",even);

          printf("\nTHE ODD NO.S ARE %d",odd);

          printf("\nTHE TOTAL OF EVEN NO.S ARE %d",sum_even);

          printf("\nTHE TOTAL OF ODD NO.S ARE  %d",sum_odd);

          printf("\nTHE AVERAGE OF ALL EVEN NO.S IS %f",avg_e);

          printf("\nTHE AVERAGE OF ALL ODD NO.S IS  %f",avg_o);

 

          getch();

}

 

OUTPUT :

ENTER THE NO 1 1 : 2

ENTER THE NO 1 2 : 6

ENTER THE NO 1 3 : 3

ENTER THE NO 2 1 : 4

ENTER THE NO 2 2 : 7

ENTER THE NO 2 3 : 8

ENTER THE NO 3 1 : 9

ENTER THE NO 3 2 : 1

ENTER THE NO 3 3 : 2

 

NO ARE IN ASCENDING ORDER

1          2          2

3          4          6

7          8          9

 


Related Discussions:- C program for find even & odd no.s in the array

C program for the no are in ascending order , #include stdio.h> #include...

#include stdio.h> #include conio.h> #include string.h> void main() {           int i=0,j=0,k=0,l=0;           int a[3][3],temp[3][3];           clrscr();

C program to search for a given character in a string, Program is to search...

Program is to search for a given character in a string: Program is to search for a given character in a string and print point of match char *stsearch(char *string, char sea

Explain about the integer constants in c language, Explain about the Intege...

Explain about the Integer constants in c language? An integer constant is the integer valued number and it refers to a sequence of digits. A decimal integer constant includes o

C program to store all ascii char into a file, Program is to store all ASCI...

Program is to store all ASCII char into a file: void main()     {   ofstream  fout("ascii.txt");   int i,n=256;   for(i=1;i     {     fout     }

Converting base type to class type (char to string), Converting Base Type t...

Converting Base Type to Class Type (char to string)   class String { char *name; int length; public: String(void) {length =0; name = new char[length+1];

Sort wars, Explain each of the algorithms in a way that would be understand...

Explain each of the algorithms in a way that would be understandable to an intelligent person who is not familiar with programming. You should not use any code (or even pseudo code

C program to add two complex numbers , Aim: To implement a program to add ...

Aim: To implement a program to add two complex numbers using constructors. Code:                       class complex {             int real;             int img;

Padovan string, find the occurence of zy in the final string

find the occurence of zy in the final string

Functions and stack frame, Each function has its own stack frame between %f...

Each function has its own stack frame between %fp and %sp. Let Caller calls Callee. Then Caller's %sp becomes callee's %fp, and callee's %sp set to be a new value (a smaller one be

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd