View Code of Problem 68

#include<stdio.h>

int main(void)
{
  int a, b, c, max;
  scanf("%d %d %d",&a,&b,&c);
  max=a;
  if(max>b)
  {
    ;
  }
  else
    max=b;
  if(max>c)
    ;
  else
    max=c;
  printf("%d\n",max);
}

Double click to view unformatted code.


Back to problem 68