View Code of Problem 68

#include<stdio.h>
int main(void)
{
    int m,n,t,i;
    scanf("%d%d%d",&m,&n,&t);
    if(m>n)
    {
        if(m>t)
        {
            printf("%d\n",m);
        }
        else
        {
            printf("%d\n",t);
        }
    }
    else
    {
        if(n>t)
        {
            printf("%d\n",n);
        }
        else
        {
            printf("%d\n",t);
        }
    }
}

Double click to view unformatted code.


Back to problem 68