اكتب برنامج C يقبل ثلاثة أعداد صحيحة ويوجد العدد الأكبر من بينها

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

اكتب برنامج C يقبل ثلاثة أعداد صحيحة ويوجد العدد الأكبر من بينها

مثال عن الخرج المتوقع :

Input the first integer: 25
Input the second integer: 35
Input the third integer: 15

Maximum value of three integers: 35

الأجوبة

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int x, y, z, result, max;
    printf("\nInput the first integer: "); 
    scanf("%d", &x);
    printf("\nInput the second integer: ");
    scanf("%d", &y);
    printf("\nInput the third integer: ");
    scanf("%d", &z);
    result=(x+y+abs(x-y))/2;
    max=(result+z+abs(result-z))/2;
    printf("\nMaximum value of three integers: %d", max);
	printf("\n");
    return 0;
}
هل كان المحتوى مفيد؟

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

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