View Code of Problem 68

#include<stdio.h>
int main()
{
 int a,b,c,temp;
  scanf("%d %d %d",&a,&b,&c);
  if(a<b)
  {
   temp=a;
    a=b;
    b=temp;
  }
  
   if(a<c)
  {
   temp=a;
    a=c;
    c=temp;
  }
  printf("%d\n",a);
  
}

Double click to view unformatted code.


Back to problem 68