اكتب برنامج بلغة C لإيجاد المضاعف المشترك الأصغر لأي رقمين باستخدام العامل المشترك الأكبر
- برمجة
- برمجة سي c
- 2021-05-04
- Wassim
الأجوبة
/*Write a program in C to find LCM of any two numbers using HCF*/
#include <stdio.h>
void main()
{
int i, n1, n2, j, hcf=1,lcm;
printf("\n\n LCM of two numbers:\n ");
printf("----------------------\n");
printf("Input 1st number for LCM: ");
scanf("%d", &n1);
printf("Input 2nd number for LCM: ");
scanf("%d", &n2);
j = (n1<n2) ? n1 : n2;
for(i=1; i<=j; i++)
{
if(n1%i==0 && n2%i==0)
{
hcf = i;
}
}
/* We know the multiplication of HCF and LCM is equivalant
to the multiplication of these two numbers.*/
lcm=(n1*n2)/hcf;
printf("\nThe LCM of %d and %d is : %d\n\n", n1, n2, lcm);
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال