اكتب برنامج C يأخذ عددين صحيحين ويتحقق مما إذا كان العدد الصحيح الأول مضاعفًا للعدد الصحيح الثاني

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

اكتب برنامج C يقرأ في عددين صحيحين وتحقق مما إذا كان العدد الصحيح الأول مضاعفًا للعدد الصحيح الثاني

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

Input the first integer : 9

Input the second integer: 3

9 is a multiple of 3

الأجوبة

/*Write a C program that reads in two integers and check whether the first integer is a multiple of the second integer*/

#include<stdio.h>

int is_Multiple(int n1, int n2)
{
    return n1 % n2 == 0;
}
int main()
{
    int n1, n2;
   
    printf( "Input the first integer : " );
    scanf("%d", &n1);
    printf( "Input the second integer: " );
    scanf("%d", &n2);

    if(is_Multiple(n1, n2))
        printf( "\n%d is a multiple of %d.\n", n1, n2 );
    else
        printf( "\n%d is not a multiple of %d.\n", n1, n2 );

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

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

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