View Code of Problem 68

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

Double click to view unformatted code.


Back to problem 68