please help me
write a program that lets the user enter 5 integers then outputs the folllowing
a. whether the integer inputted is odd or even
b. determines the largest and smallest number inputted
c. sum all odd integer entries
d. sum all even integer entries
here is the partial code please help me to continue.. Thanks
#include<stdio.h>
void oddeven();
void smallestandlargest();
void sum();
int n,i,max,min,modulo,odd,even;
void main(){
for(i=1;i<=5;i++){
printf("\nEnter a number: ");
scanf("%d", &n);
oddeven();
}
sum();
}
void oddeven(){
modulo=n%2;
if(modulo==0)
printf("Even\n");
else
printf("Odd\n");
}
void sum(){