2 тооны ХИЕХ-ийг олох функц зохиогоод 4 тооны ХИЕХ-ийг ол

‪#‎include‬<stdio.h>
#include<conio.h>
int hieh(long int y,long int x)
{int s;
while(x!=0 && y!=0){if(x>=y)x=x%y;
else y=y%x;}
s=x+y;
return s;
}
void main()
{long int a,b,c,d;
int m;
printf("\n4 toog oruulna uu?"); scanf("%d%d%d%d",&a,&b,&c,&d);
m=hieh(hieh(hieh(a,b),c),d);
printf("\nHIEH ni:%d",m);
getch();
}

Comments