Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
1 inch = 2.54 inches.
<html>
<head>
<script type="text/javascript">
var mm = 35831; // input value, for example 35831
var denom = 16;
var rnd = 1.0 / denom;
var in_ = mm / 25.4;
var in_f = in_ - Math.floor(in_);
var in_i = Math.floor(in_);
var n = Math.ceil(in_f / rnd);
var dv = gcd(n, denom);
n /= dv;
denom /= dv;
var in_str = n + '/' + denom;
var inches = mm + 'mm=' + in_i + ' ' + n + '/' + denom + ' inch';
document.write(inches);
function gcd(a, b) {
if (a == 0) return b;
while(b > 0 && a > 0) {
if (a > b) {
a -= b;
} else {
b -= a;
}
}
return a;
}
</script>
</head>
</html>