Write a PHP program to compute the sum of the two given arrays of integers, length 3 and find the array which has the largest sum

  • برمجة بي اتش بي

Write a PHP program to compute the sum of the two given arrays of integers, length 3 and find the array which has the largest sum

الأجوبة

<?php
function test($nums1, $nums2)
 { 
    return $nums1[0] + $nums1[1] + $nums1[2] >= $nums2[0] + $nums2[1] + $nums2[2] ? $nums1 : $nums2;
 }   

$result = test([10, 20, -30], [10, 20, 30]);
echo "New array with maximum values: " . implode(',', $result);

Sample Output:

New array with maximum values: 10,20,30
هل كان المحتوى مفيد؟

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

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