■インチ(in)からフィート(ft)へ変換

 インチ(in)からフィート(ft)へ変換するには12で割ればよい。

12 in = 1 ft

function in_to_ft(n)
{
    return n / 12;
}

[目次に戻る]