اكتب برنامج C يأخذ عددين صحيحين واختبر ما إذا كان أحداهما مضاعف للأخر أم لا
- برمجة
- برمجة سي c
- 2021-05-02
- Wassim
الأجوبة
/*Write a C program that takes two integers and test whether they are multiplies are not*/
#include <stdio.h>
int main () {
unsigned short int x, y, multi;
printf("Input two integers: \n");
scanf("%hd %hd", &x, &y);
if (x > y){
multi = x%y;
if ( multi == 0){
printf("Multiplies\n");
}
else{
printf("Not Multiplies\n");
}
}
else{
multi = y%x;
if (multi == 0){
printf("Multiplies\n");
}
else{
printf("Not Multiplies\n");
}
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال