Sum all odd values among 5 inputs
C Practice Exercise
Write a C program that read 5 numbers and sum of all odd values between them.
Pictorial Presentation:

C Code:
#include <stdio.h>
int main() {
int j, numbers[5], total=0; // Declare array to store 5 numbers and variable for total
printf("\nInput the first number: ");
scanf("%d", &numbers[0]);
printf("\nInput the second number: ");
scanf("%d", &numbers[1]);
printf("\nInput the third number: ");
scanf("%d", &numbers[2]);
printf("\nInput the fourth number: ");
scanf("%d", &numbers[3]);
printf("\nInput the fifth number: ");
scanf("%d", &numbers[4]);
for(j = 0; j < 5; j++) {
if((numbers[j]%2) != 0) // Check if the number is odd
{
total += numbers[j]; // Add odd number to total
}
}
printf("\nSum of all odd values: %d", total); // Print the sum of odd numbers
return 0;
}
Sample Output:
Input the first number: 5 Input the second number: 7 Input the third number: 9 Input the fourth number: 10 Input the fifth number: 13 Sum of all odd values: 34
Flowchart:

For more Practice: Solve these Related Problems:
- Write a C program to sum all even numbers among five inputs provided by the user.
- Write a C program to continuously sum odd values from user inputs until a negative number is entered.
- Write a C program to sum odd numbers that are greater than a specified minimum value from a set of inputs.
- Write a C program to sum all odd numbers and count the number of odd inputs simultaneously, then display both results.
C Programming Code Editor:
Previous: Write a C program that read 5 numbers and counts the number of positive numbers and print the average of all positive values.
Next: Write a C program to find and print the square of each one of the even values from 1 to a specified value.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics