Ad Code

Responsive Advertisement

1071 - Sum of Consecutive Odd Numbers I

Author: Ismail Hosen

Daffodil International University





Problem Link

//Please follow from main function



#include<stdio.h>


int main()


{


    int a,b,c=0;


    scanf("%d %d", &a, &b);


    if(a==b)


        printf("%d\n", c);


    else if(a<b)


    {


        for(a=a+1; a<b; a++)


        {


            if(a%2==1 || a%2==-1)


            {


                c+=a;


            }


        }


        printf("%d\n", c);


    }


    else if(a>b)


    {


        for(b=b+1; b<a; b++)


        {


            if(b%2==1 || b%2==-1)


            {


                c+=b;


            }


        }


        printf("%d\n", c);


    }


    return 0;


}





Post a Comment

0 Comments