Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- int n1, n2;
- printf("Enter two positive integers: ");
- scanf("%d %d",&n1,&n2);
- while(n1!=n2)
- {
- if(n1 > n2)
- n1 -= n2;
- else
- n2 -= n1;
- }
- printf("GCD = %d",n1);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement