インチ(in)からメートル(m)へ変換する

説明

インチ(in)からメートル(m)へ変換するには0.254を乗算します。

サンプルプログラム

window.onload = function(){
document.getElementById("calcButton").onclick = function(){
var n = parseFloat(document.getElementById("val").value);
document.getElementById("result").innerHTML = in_to_m(n)+"メートル";
}
}
// 変換処理
function in_to_m(n){ return n * 0.254; }
サンプルを実行
[戻る]