View Code of Problem 68

#include<stdio.h>
int main()
{
	int s[2];
	int i,max=0;
	for(i=0;i<3;i++)
	scanf("%d",&s[i]);
	for(i=0;i<3;i++)
	{
		if(s[i]>max)
		max=s[i];
	}
	printf("%d",max);
	return 0;
}

Double click to view unformatted code.


Back to problem 68