Question: C++ PLEASE Define a function PrintValue() that takes two integer parameters and outputs the sum of all odd integers starting with the first and ending
C++ PLEASE
Define a function PrintValue() that takes two integer parameters and outputs the sum of all odd integers starting with the first and ending with the second parameter. End with a newline. The function does not return any value. Ex: If the input is -5 2, then the output is: -8 Note: Odd numbers are not divisible by 2.
#include using namespace std;
/* Your code goes here */
int main()
{
int number1;
int number2;
cin >> number1;
cin >> number2;
PrintValue(number1, number2);
return 0;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
