اكتب برنامج C لإيجاد جميع الأعداد التي تقسم على 7 والباقي يساوي 2 أو 3 بين عددين صحيحين معطين
- برمجة
- برمجة سي c
- 2021-05-01
- Wassim
الأجوبة
/*Write a C program to find all numbers which are dividing by 7 and the remainder is equal to 2 or 3 between two given integer numbers*/
#include
int main() {
int x, y, temp, i, sum=0;
printf("\nInput the first integer: ");
scanf("%d", &x);
printf("\nInput the second integer: ");
scanf("%d", &y);
if(x > y)
{
temp = y;
y = x;
x = temp;
}
for(i = x+1; i < y; i++)
{
if((i%7) == 2 || (i%7) == 3) {
printf("%d\n", i);
}
}
return 0;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال