Friday, March 10, 2017

URI problem 1013 solution in C | (The Greatest)



Find the solution in the link below:

https://codespathshala.com/uri-1013/

1 comment:

  1. #include
    int main()
    {
    int A,B,C;
    scanf("%d%d%d",&A,&B,&C);
    if(A>B && A>C)
    {
    printf("%d eh o maior\n",A);

    }
    else if(B>A && B>C)
    {
    printf("%d eh o maior\n",B);
    }
    else
    {
    printf("%d eh o maior\n",C);
    }
    return 0;



    }

    ReplyDelete