카타 8급 Formatting decimal places #0

PHP[ | ]

function twoDecimalPlaces($n) {
  return round($n, 2);
}
function twoDecimalPlaces($n) {
  return round($n*100)/100;
}
function twoDecimalPlaces(float $n): float {
    return sprintf("%.2f", round($n, 2));
}
function twoDecimalPlaces($n) {
    $str = sprintf("%.2f", $n);
    return floatVal($str);
}
function twoDecimalPlaces($n) {
    return (float) number_format($n, 2, '.', '');
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}