Question: Given four positive integers a, b, c, and d, compute the sum of those among them that are odd. Hint: Because you have not yet

Given four positive integers a, b, c, and d, compute the sum of those among them that are odd.

Hint: Because you have not yet learned how to make decisions, use the fact that for a positive integer n, the expression n % 2 is either 0 or 1. You can multiply the integer n by (n % 2) to yield either zero (for even numbers) or n (for odd).

#include

using namespace std;

int main() { int n, odd_sum; // These values will be changed during testing int a = 13; int b = 10; int c = 9; int d = 2;

for (int i = 1; i <= a; ++i){ odd_sum += i; } cout << "Odd sum: " << odd_sum;

return 0; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!