Tagged Questions
-1
votes
1answer
36 views
PHP , Sum Of Common Division 2 Numbers
I want to Sum of Common Division Between two number,
in below is my code , and output is maghsom moshtarak is=24612
but Goal is 12 only;
please help me,
<?php
$m=0;
$j=6;
$h=12;
function ...
3
votes
5answers
332 views
Look for the GCD (greatest common divisor) of more than 2 integers?
I already have a function that find the GCD of 2 numbers.
function getGCDBetween($a, $b)
{
while ($b != 0)
{
$m = $a % $b;
$a = $b;
$b = $m;
}
return $a;
}
...