اكتب برنامج C للتحقق مما إذا كانت y أكبر من x ، و z أكبر من y من ثلاثة أعداد صحيحة معطاة x ، y ، z
- برمجة
- برمجة سي c
- 2021-05-03
- Wassim
الأجوبة
/*Write a C program to check whether y is greater than x, and z is greater than y from three given integers x,y,z*/
#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 && y < z;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال