اكتب برنامج C لحساب مجموع الأعداد الصحيحة الثلاثة. إذا كانت إحدى القيم 13 ، فلا تحسبها و احسب المجموع دون إكمال الإدخال
- برمجة
- برمجة سي c
- 2021-05-03
- Wassim
الأجوبة
/*Write a C program to compute the sum of the three integers. If one of the values is 13 then do not count it and its right towards the sum*/
#include <stdio.h>
#include <stdlib.h>
int main(void){
printf("%d",test(4, 5, 7));
printf("\n%d",test(7, 4, 12));
printf("\n%d",test(10, 13, 12));
printf("\n%d",test(13, 12, 18));
}
int test(int x, int y, int z)
{
if (x == 13) return 0;
if (y == 13) return x;
if (z == 13) return y + z;
return x + y + z;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال