“PHP RAPT UP” Réponses codées

PHP Rond vers le bas

// round down
echo floor(1.5); // prints 1

// round up
echo ceil(1.5); // prints 2
DenverCoder1

PHP RAPT UP

<?php
echo ceil(4.3);    // 5
echo ceil(9.999);  // 10
echo ceil(-3.14);  // -3
?>
2589

Fonction PHP Round ()

<?php
  
  /*The round() function rounds a floating-point number to its nearest 
  integer:
  */
echo(round(0.72));  # Returns 1
echo(round(0.23));  # Returns 0
echo(round(-4.13)); # Returns -4
echo(round(152)); # Returns 152
Rick Astley

PHP RAPT UP

//round up to nearest integer
echo(ceil(0.60) . "<br>");
//result 1
Warrior

PHP RAPT UP


<?php
echo 'Rounding modes with 9.5' . PHP_EOL;
var_dump(round(9.5, 0, PHP_ROUND_HALF_UP));
var_dump(round(9.5, 0, PHP_ROUND_HALF_DOWN));
var_dump(round(9.5, 0, PHP_ROUND_HALF_EVEN));
var_dump(round(9.5, 0, PHP_ROUND_HALF_ODD));

echo 'Rounding modes with 8.5' . PHP_EOL;
var_dump(round(8.5, 0, PHP_ROUND_HALF_UP));
var_dump(round(8.5, 0, PHP_ROUND_HALF_DOWN));
var_dump(round(8.5, 0, PHP_ROUND_HALF_EVEN));
var_dump(round(8.5, 0, PHP_ROUND_HALF_ODD));
?>

Tough Tarsier

PHP RAPT UP

echo ceil(4.3);    // 5
echo ceil(9.999);  // 10
echo ceil(-3.14);  // -3
Selfish Skunk

Réponses similaires à “PHP RAPT UP”

Questions similaires à “PHP RAPT UP”

Plus de réponses similaires à “PHP RAPT UP” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code