اكتب برنامج C للتحقق من ثلاثة أعداد صحيحة وإرجاع صحيح إذا كان أحدهم 20 أو أكثر أقل من الآخر
- برمجة
- برمجة سي c
- 2021-05-03
- Wassim
الأجوبة
/*Write a C program to check three given integers and return true if one of them is 20 or more less than one of the others*/
#include <stdio.h>
#include <stdlib.h>
int main(void){
printf("%d",test(11, 21, 31));
printf("\n%d",test(11, 22, 31));
printf("\n%d",test(10, 20, 15));
}
int test(int x, int y, int z)
{
return abs(x - y) >= 20 || abs(x - z) >= 20 || abs(y - z) >= 20;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال