URI Online Judge Solution 1113 - Solution in C






Solution in C 

#include <stdio.h>
int main()
{
    int a,b;
    while(1)
    {
        scanf("%d%d", &a, &b);
            if(a>b)
            {
                    printf("Decrescente\n");
            }
            else if(a<b)
            {
                    printf("Crescente\n");
            }
            else if(a==b)
break;
    }
    return 0;
}





~~~~~~Happy Coding~~~~~~

No comments

Powered by Blogger.