이 름 : 바다아이
|
조회수 : 9268
짧은 주소 : https://www.bada-ie.com/su/?651591777748
사용 용도마다 개념이 좀 달라질 수 있으니까...
적당히 고쳐서 사용하세요....
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><metahttp-equiv="Content-Type"content="text/html; charset=utf-8"><title> 자바스크립트 반올림, 올림, 버림 </title><scripttype="text/javascript">
<!--
// 지정자리 반올림 (값, 자릿수)functionRound(n, pos) {
var digits = Math.pow(10, pos);
var sign = 1;
if (n < 0) {
sign = -1;
}
// 음수이면 양수처리후 반올림 한 후 다시 음수처리
n = n * sign;
var num = Math.round(n * digits) / digits;
num = num * sign;
return num.toFixed(pos);
}
// 지정자리 버림 (값, 자릿수)functionFloor(n, pos) {
var digits = Math.pow(10, pos);
var num = Math.floor(n * digits) / digits;
return num.toFixed(pos);
}
// 지정자리 올림 (값, 자릿수)functionCeiling(n, pos) {
var digits = Math.pow(10, pos);
var num = Math.ceil(n * digits) / digits;
return num.toFixed(pos);
}
functioncalcRound(num){
var i = document.getElementById("aa").value;
document.getElementById("result").innerHTML = Round(i, num) ;
returnfalse;
}
functioncalcCeil(num){
var i = document.getElementById("aa").value;
document.getElementById("result2").innerHTML = Ceiling(i, num) ;
returnfalse;
}
functioncalcFloor(num){
var i = document.getElementById("aa").value;
document.getElementById("result3").innerHTML = Floor(i, num) ;
returnfalse;
}
//--></script></head><body><formname="aaaform"method="post">
숫자 : <inputtype="text"name="aa"id="aa"><br/>
자리수 : <inputtype="text"name="aa2"id="aa2"><br/><br><buttononclick="return calcRound(aaaform.aa2.value)">반올림</button><br/><buttononclick="return calcCeil(aaaform.aa2.value)">올림</button><br/><buttononclick="return calcFloor(aaaform.aa2.value)">버림</button><br/><br>
반올림 값 : <divid="result"></div><br/>
올림 값 : <divid="result2"></div><br/>
버림 값 : <divid="result3"></div><br/></form></body></html>
출처 : http://findfun.tistory.com/367
|
|
번 호
카테고리
제 목
이름
조회수
Copyright ⓒ 2001.12. bada-ie.com. All rights reserved.
이 사이트는 리눅스에서 firefox 기준으로 작성되었습니다. 기타 브라우저에서는 다르게 보일 수 있습니다.
[ Ubuntu + GoLang + PostgreSQL + Mariadb ]
서버위치 : 오라클 클라우드 춘천 실행시간 : 0.06388 초 to webmaster... gogo sea. gogo sea.