lcm of two numbers in c code example

Example 1: addition of two numbers in c

int num1,num2;
printf("%d",num1+num2);

Example 2: Lcm of 2 numbers in c

// for finding lcm of 2 number . Can use this concept to find lcm of an array of number
#include <stdio.h>
int main() {
    int n1, n2, max;
    printf("Enter two positive integers: ");
    scanf("%d %d", &n1, &n2);

    // maximum number between n1 and n2 is stored in min
    max = (n1 > n2) ? n1 : n2;

    while (1) {
        if (max % n1 == 0 && max % n2 == 0) {
            printf("The LCM of %d and %d is %d.", n1, n2, max);
            break;
        }
        ++max;
    }
    return 0;
}
Copied

Tags:

Cpp Example