インチ(in)からセンチ(cm)へ変換する
		
			
説明
			インチ(in)からセンチ(cm)へ変換するには2.54を乗算します。
		
		
			
サンプルプログラム
			window.onload = function(){
			 document.getElementById("calcButton").onclick = function(){
			  var n = parseFloat(document.getElementById("val").value);
			  document.getElementById("result").innerHTML = in_to_cm(n)+"センチ";
			 }
			}
			// 変換処理
			function in_to_cm(n){ return n * 2.54; }