🔒 Closed Hello mga lods pwede pahelp c language

Status
Not open for further replies.

Elecit23

Established
Write a function that separately sums the even indexed elements and odd indexed elements of an array of doubles. Each element of the array contributes to one of the two sums, depending on whether the index of the element is even or odd. Your function definition must have a heading like
this:
void sum(double b[ ])
{ int n;
double *sum_even;
double *sum_odd;
if (
:
}
 
This might help. Just use your familiarity with C language to convert this pseudocode.
Code:
function GetSum (Var[])
   set SumEven = 0
   set SumOdd = 0
   set size = Var.size
   set i =0
   while  i to size
     if var[i]%2 == 0
        SumEven += var[i]
     else
       SumOdd += var[i]
   endwhile
  
   print SumEven
   print SumOdd

endfunction
 
Status
Not open for further replies.

About this Thread

  • 1
    Replies
  • 271
    Views
  • 2
    Participants
Last reply from:
vhin le

Trending Topics

Online now

Members online
620
Guests online
3,884
Total visitors
4,504

Forum statistics

Threads
2,308,608
Posts
29,186,187
Members
1,192,095
Latest member
Jhayr10121993
Back
Top