اكتب برنامج بلغة C لحساب (x + y + z) لكل زوج من الأعداد الصحيحة x و y و z
- برمجة
- برمجة سي c
- 2021-05-02
- Wassim
الأجوبة
/*Write a C programming to calculate (x + y + z) for each pair of integers x, y and z where -2^31 <= x, y, z<= 2^31-1*/
#include <stdio.h>
int main()
{
long x,y,z;
printf("Input x,y,x:\n");
scanf("%lld %lld %lld",&x,&y,&z);
printf("Result: %lld\n",x+y+z);
return 0;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال