Sunday, March 20, 2016

URI 1101 - Sequence of Numbers and Sum

#include<stdio.h>
main()
{
    long int T , M, N , i, sum=0;
    while(scanf("%ld %ld",&M,&N)==2){
        if(M==0 || N==0)
            break;
        else if(M<N)
            for(i=M; i<=N; i++){
                sum+=i;
                printf("%ld ",i);
            }
        else if(N<M)
            for(i=N; i<=M; i++){
                sum+=i;
                printf("%ld ",i);
    }
    printf("Sum=%ld\n",sum);
    sum=0;
    }
}

No comments:

Post a Comment