#include<stdio.h>
#include<conio.h>
void main()
{
int a[4],max,i;
clrscr();
printf("Enter the four numbers:\n");
for(i=0;i<4;i++)
scanf("%d",a[i]);
max=a[o];
for(i=1;i<4;i++)
{
if(a[i]>max)
{
max=a[i];
}
}
printf("The Greatest number is %d",max);
getch();
}
Chat with our AI personalities
Yes.First find the HCF of two of the numbers, then find the HCF of that answer and the third number.In this way you could find the HCF of as many numbers as you want.
You need at least two numbers to find a GCF.
You need at least two numbers to find a GCF.
You need at least two numbers to find a GCF.
There cannot be a greatest common factor (GCF) of just one number. To be common there need to be at least two numbers. If you find all the factors of two or more numbers, and you find some factors are the same ("common"), then the largest of those common factors is the Greatest Common Factor.