اكتب برنامج C للتحقق مما إذا كان هناك عددين صحيحين مُعطيين في النطاق 40..50 ضمنا أو كلاهما في النطاق 50..60 ضمنا
- برمجة
- برمجة سي c
- 2021-05-03
- Wassim
الأجوبة
/*Write a C program to check whether two given integers are in the range 40..50 inclusive, or they are both in the range 50..60 inclusive*/
include <stdio.h>
#include <stdlib.h>
int main(void){
printf("%d",test(78, 95));
printf("\n%d",test(25, 35));
printf("\n%d",test(40, 50));
printf("\n%d",test(55, 60));
}
int test(int x, int y)
{
return (x >= 40 && x <= 50 && y >= 40 && y <= 50) || (x >= 50 && x <= 60 && y >= 50 && y <= 60);
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال