View Code of Problem 68

# include<stdio.h>
int main(void)
{
  int a,b,c,t;
  scanf("%d%d%d",&a,&b,&c);
  if(a>b)
  {
    t = a;
    a = b;
    b = t;
  }
  if(a>c)
  {
    t = a;
    a = c;
    c = t;
  }
  if(b>c)
  {
    t = b;
    b = c;
    c = t;
  }
  printf("%d",c);
  return 0;
}

Double click to view unformatted code.


Back to problem 68