View Code of Problem 68

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

Double click to view unformatted code.


Back to problem 68