اكتب برنامج C لإيجاد العدد الأكبر من ضمن ثلاثة أعداد

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

اكتب برنامج C لإيجاد العدد الأكبر من ضمن ثلاثة أعداد

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

1st Number = 12,        2nd Number = 25,        3rd Number = 52
The 3rd Number is the greatest among three

الأجوبة

/*Write a C program to find the largest of three numbers*/

#include <stdio.h>
void main()
{
    int num1, num2, num3;
 
    printf("Input the values of three numbers : ");
    scanf("%d %d %d", &num1, &num2, &num3);
    printf("1st Number = %d,\t2nd Number = %d,\t3rd Number = %d\n", num1, num2, num3);
    if (num1 > num2)
    {
        if (num1 > num3)
        {
            printf("The 1st Number is the greatest among three. \n");
        }
        else
        {
            printf("The 3rd Number is the greatest among three. \n");
        }
    }
    else if (num2 > num3)
        printf("The 2nd Number is the greatest among three \n");
    else
        printf("The 3rd Number is the greatest among three \n");
}
هل كان المحتوى مفيد؟

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

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