Search This Blog

Monday 14 November 2016

C Program to Find GCD of two Numbers Using while loop and if...else Statement

#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;
}
Output
Enter two positive integers: 81
153
GCD = 9

No comments:

Post a Comment