기초 테스트2

round

주어진 값을 주어진 자리 아래에서 반올림 하여 반환
 
Returns the rounded value of val to specified precision
 
echo round(1.955832);  // 1.96
?>
 
문제> round 를 사용하지 않고 위와 동일한 문제에 동일한 답이 나오도록 처리하세요.
제한시간 - 2시간
|

댓글 16개

ㅠㅠ 저만 풀면 좀 그런거 같은데
어때요.... 다 같은 답이 나오는 것도 아니고 ..
그냥 풀면 됩니다.
디자이너로써 그냥>>
if 소수점 3자리째의 수가 5이상이면 2자리수에 +1시켜서 두자리수 까지만 출력해라.

else 이면 그냥 소수점두자리수까지만 표현해라.

라고 답글달아봅니다 ㅋ
echo "1.96";

ㅋㅅㅋ......
이건 쉽네요... ((int)1.95583 * (10 ^ 2) +9))/ 100)
echo xround(1.95583, 2);
function xround($rtn,$slength) {
$temp=1;
for ($i=1; $i<=$slength; $i++) $temp=$temp*10;
$rtn=$rtn*$temp+0.5;
return ((int) $rtn/$temp );
}

검사는 안해봣음 --; 대충 맞을것 같음

---> 검사해봄 잘됨
제한시간도 생겼네요 ㅠㅠ
최대한 네이티브로 했는데 is_numeric 은 예외처리로 끼워넣은거니까 봐주세요.

function round_custom($num,$pos=1){

if((int)$pos < 0) return 0;

if(is_numeric($num) == FALSE){
return 0;
}

$pos_helper = 1;
for($i = 0;$i<$pos;$i++){
$pos_helper*=10;
}

$constant_int_helper = 10;
$temp_var1 = (int)(($num*$pos_helper*$constant_int_helper + (($num*$pos_helper*$constant_int_helper)%10>4?10:-10))/$constant_int_helper)/$pos_helper;

return $temp_var1;
}
echo ((int)((1.95583 * 100) + .9)) / 100;
echo (int)((1.95583 + 0.005) * 100) / 100;
function banOlim($num, $r){

$roundingplace = pow(10,$r);
$num = $num*$roundingplace;
$num = ceil($num);

return $num / $roundingplace;

}

echo banOlim(1.95583, 2);
pow라는 함수가 있군요..... 허허~! 몰라서 for문 돌림 --;
ceil 은 반올림이 아닌것으로 이상합니다만.

banOlim(1.95583, 4) 해보시면 올림으로 나옵니다.
<?
function xround($float, $precision=0) {
$num = pow(10, $precision);
return (int)(($float + (0.5 / $num)) * $num) / $num;
}

echo xround(1.95583, 2);
echo number_format(1.95583, 2);
WoW !!!
printf("%0.2f", 1.95583);
sprintf("%01.2f", 1.95583);
댓글을 작성하시려면 로그인이 필요합니다. 로그인

자유게시판

+
제목 글쓴이 날짜 조회
14년 전 조회 3,700
14년 전 조회 1,405
14년 전 조회 1,728
14년 전 조회 2,091
14년 전 조회 3,335
14년 전 조회 1,802
14년 전 조회 1,682
14년 전 조회 1,990
14년 전 조회 1,983
14년 전 조회 1,256
14년 전 조회 1,293
14년 전 조회 1,805
14년 전 조회 1,676
14년 전 조회 1,220
14년 전 조회 1,881
14년 전 조회 1,926
14년 전 조회 1,705
14년 전 조회 1,252
14년 전 조회 1,197
14년 전 조회 1,169
14년 전 조회 1,124
14년 전 조회 1,655
14년 전 조회 1,292
14년 전 조회 1,153
14년 전 조회 1,756
14년 전 조회 1,276
14년 전 조회 1,172
14년 전 조회 1,261
14년 전 조회 1,268
14년 전 조회 1,741
🐛 버그신고