اكتب برنامج C للتحقق مما إذا كانت قيمتان صحيحتان في النطاق 20.50 ضمناً. إرجاع صحيح إذا كان 1 أو آخر في النطاق المذكو غير ذلك إرجاع خطأ
- برمجة
- برمجة سي c
- 2021-05-03
- Wassim
الأجوبة
/*Write a C program to check whether two given integer values are in the range 20..50 inclusive. Return true if 1 or other is in the said range otherwise false*/
#include <stdio.h>
#include <stdlib.h>
int main(void){
printf("%d",test(20, 84));
printf("\n%d",test(14, 50));
printf("\n%d",test(11, 45));
printf("\n%d",test(25, 40));
}
int test(int x, int y)
{
return (x <= 20 || y >= 50) || (x <= 20 || y >= 50);
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال