Q:

Write a PHP program to print out the sum of pairs of numbers of a given sorted array of positive integers which is equal to a given number

0

Write a PHP program to print out the sum of pairs of numbers of a given sorted array of positive integers which is equal to a given number

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

<?php
function find_Pairs($nums, $pair_sum) {
  $nums_pairs = "";
  for ($i = 0; $i <= count($nums); $i++) {
     for ($j = $i + 1; $j < count($nums); $j++) {
        if ($nums[$i] + $nums[$j] == (int)$pair_sum) {
           $nums_pairs .= $nums[$i] . "," . $nums[$j] . ";";
        }
     }
  }
  return $nums_pairs;
}
$nums = array(0,1,2,3,4,5,6);
echo find_Pairs($nums, 7)."\n";
echo find_Pairs($nums, 5)."\n";
?>

Sample Output:

1,6;2,5;3,4;                                                
0,5;1,4;2,3;

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now