اكتب برنامج بلغة C لإيجاد زوج من الأعداد يحقق المجموع المعطى من المصفوفة

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

اكتب برنامج بلغة C لإيجاد زوج من الأعداد يحقق المجموع المعطى من المصفوفة

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

The given array : 6  8  4  -5  7  9  
The given sum : 15

Pair of elements can make the given sum by the value of index 0 and 5

الأجوبة

/*Write a program in C to find a pair with given sum in the array*/

#include <stdio.h>
void checkForSum (int arr1[], int n, int s)
{
    // read upto to the last element - 1
    for (int i = 0; i < n - 1; i++)
    {
       // read i'th element to last element
        for (int j = i + 1; j < n; j++)
        {
            // if given sum is found
            if (arr1[i] + arr1[j] == s)
            {
                printf("Pair of elements can make the given sum by the value of index %d and %d", i, j);
                return;
            }
        }
    }
    printf("No Pair can make the given sum.");
}
 
int main()
{
    int arr1[] = { 6, 8, 4, -5, 7, 9 };
    int s = 15;
    printf("The given array : ");
    int n = sizeof(arr1)/sizeof(arr1[0]);
	 for (int i = 0; i <= n - 1; i++)
    {
	printf("%d  ",arr1[i]);
	}  
	printf("\nThe given sum : %d\n",s);
	printf("\n");
    checkForSum(arr1, n, s);
    return 0;
}
هل كان المحتوى مفيد؟

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

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