اكتب برنامج C للتحقق مما إذا كان من الممكن إضافة عددين صحيحين للحصول على العدد الصحيح الثالث من ثلاثة أعداد صحيحة مُعطاة
- برمجة
- برمجة سي c
- 2021-05-03
- Wassim
الأجوبة
/*Write a C program to check whether it is possible to add two integers to get the third integer from three given integers*/
#include <stdio.h>
#include <stdlib.h>
int main(void){
printf("%d",test(1, 2, 3));
printf("\n%d",test(4, 5, 6));
printf("\n%d",test(-1, 1, 0));
}
int test(int x, int y, int z)
{
return x == y + z || y == x + z || z == x + y;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال