Skip to main content
The 2024 Developer Survey results are live! See the results
added 52 characters in body
Source Link
Djave
  • 9.2k
  • 8
  • 76
  • 131

$ee = array('a' => 50, 'b' => 25, 'c' => 5, 'd' => 80, 'e' => 40, 'f' => 152, 'g' => 45, 'h' => 28); $Acurr = ''; $Amax = 0;

foreach($ee as $key => $value) { $Acurr = $value;

$ee = array('a' => 50, 'b' => 25, 'c' => 5, 'd' => 80, 'e' => 40, 'f' => 152, 'g' => 45, 'h' => 28);
$Acurr = '';
$Amax = 0;

foreach($ee as $key => $value) {
    $Acurr = $value;    

    if($Acurr >= $Amax) {
        $Amax = $Acurr; 
    }
}

echo "greatest number is $Amax";

}

echo "greatest number is $Amax";

$ee = array('a' => 50, 'b' => 25, 'c' => 5, 'd' => 80, 'e' => 40, 'f' => 152, 'g' => 45, 'h' => 28); $Acurr = ''; $Amax = 0;

foreach($ee as $key => $value) { $Acurr = $value;

if($Acurr >= $Amax) {
    $Amax = $Acurr; 
}

}

echo "greatest number is $Amax";

$ee = array('a' => 50, 'b' => 25, 'c' => 5, 'd' => 80, 'e' => 40, 'f' => 152, 'g' => 45, 'h' => 28);
$Acurr = '';
$Amax = 0;

foreach($ee as $key => $value) {
    $Acurr = $value;    

    if($Acurr >= $Amax) {
        $Amax = $Acurr; 
    }
}

echo "greatest number is $Amax";
Source Link

$ee = array('a' => 50, 'b' => 25, 'c' => 5, 'd' => 80, 'e' => 40, 'f' => 152, 'g' => 45, 'h' => 28); $Acurr = ''; $Amax = 0;

foreach($ee as $key => $value) { $Acurr = $value;

if($Acurr >= $Amax) {
    $Amax = $Acurr; 
}

}

echo "greatest number is $Amax";