اكتب برنامج سي يقبل عددين صحيحين من المستخدم ويحسب حاصل ضرب عددين صحيحين
- برمجة
- برمجة سي c
- 2021-05-01
- Wassim
الأجوبة
#include <stdio.h>
int main()
{
int x, y, result;
printf("\nInput the first integer: ");
scanf("%d", &x);
printf("\nInput the second integer: ");
scanf("%d", &y);
result = x * y;
printf("Product of the above two integers = %d\n", result);
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال