Coding | Mcqs | Multiple choice questions | Informative | Computer Science | Engineering | Aptitude | Quants | Verbal

INFEED

C++ - VERY-EASY - PART004-Sum of odd numbers from M to N

 Two numbers M and N are passed as the input. The program must print the sum of odd numbers from M to N (inclusive of M and N).


Input Format:

The first line denotes the value of M

The second line denotes the value of N


Output Format:

Sum of odd numbers from M to N (inclusive of M and N).


Boundary Conditions:

1 <= M <= 9999999

M < N <= 9999999


Example Input/Output 1:

Input:

2

11


Output:

35


Explanation:

The odd numbers from 2 to 11 are 3 5 7 9 11.

Their sum is 35.


Example Input/Output 2:

Input:

55

111


Output:

2407


CODE:

 #include <bits/stdc++.h>

using namespace std;

int main()

{int a,b;

cin>>a>>b;

int s=0;

for(int i=a;i<=b;i++)

{

if(i%2!=0)

s+=i;

}

    cout<<s;

return 0;

}

Post a Comment

Previous Post Next Post