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

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

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

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

Input the first number: 5
Input the second number: 15
Multiplied!

الأجوبة

/*Write a C program that reads two integers and checks whether they are multiplied or not*/

#include 

int main() {
	int  x, y;
    printf("\nInput the first number: "); 
    scanf("%d", &x);
    printf("\nInput the second number: ");
    scanf("%d", &y);
  
    if(x > y) 
	{
		int temp;
		temp = x;
		x = y;
		y = temp;
	}
	
	if((y % x)== 0) 
	{
		printf("\nMultiplied!\n");
	} 
	else 
	{
		printf("\nNot Multiplied!\n");
	}
	
	return 0;
}
هل كان المحتوى مفيد؟

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

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