اكتب برنامج C يقبل عددين صحيحين من المستخدم واحسب مجموع العددين الصحيحين
- برمجة
- برمجة سي c
- 2021-05-01
- Wassim
الأجوبة
/*Write a C program that accepts two integers from the user and calculate the sum of the two integers*/
#include
int main()
{
int x, y, sum;
printf("\nInput the first integer: ");
scanf("%d", &x);
printf("\nInput the second integer: ");
scanf("%d", &y);
sum = x + y;
printf("\nSum of the above two integers = %d\n", sum);
return 0;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال