اكتب برنامج سي يقبل عددين صحيحين من المستخدم ويحسب حاصل ضرب عددين صحيحين

  • برمجة
  • برمجة سي c

اكتب برنامج سي يقبل عددين صحيحين من المستخدم ويحسب حاصل ضرب عددين صحيحين

بيانات للاخبتار : 

Input the first integer: 25
Input the second integer: 15
Expected Output:
Product of the above two integers = 375

الأجوبة

/*Write a C program that accepts two integers from the user and calculate the product of the two integers*/

#include 
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);
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...