Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
To Find GCD of two Numbers
SUBMITTED BY:
kaushal1981
DATE:
Feb. 21, 2017, 9:20 p.m.
FORMAT:
Text only
SIZE:
364 Bytes
Raw
Download
Tweet
HITS:
823
Go to comments
Report
#include <stdio.h>
int main()
{
int n1, n2, i, gcd;
printf("Enter two integers: ");
scanf("%d %d", &n1, &n2);
for(i=1; i <= n1 && i <= n2; ++i)
{
// Checks if i is factor of both integers
if(n1%i==0 && n2%i==0)
gcd = i;
}
printf("G.C.D of %d and %d is %d", n1, n2, gcd);
return 0;
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus