اكتب برنامج بلغة C لإيجاد المضاعف المشترك الأصغر لأي رقمين باستخدام العامل المشترك الأكبر

  • برمجة
  • برمجة سي c

اكتب برنامج بلغة C لإيجاد المضاعف المشترك الأصغر لأي رقمين باستخدام العامل المشترك الأكبر

الخرج المتوقع :

  LCM of two numbers:
 ----------------------
Input 1st number for LCM: 15
Input 2nd number for LCM: 20
                                                                                                              
The LCM of 15 and 20 is : 60

الأجوبة

/*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);  

}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...