formulas:
| feet | = | cm div 30.48 |
| inches | = | (cm mod 30.48) / 2.54 |
| lbs | = | kg / 0.45359 |
| cm | = | (feet * 30.48) + (inches * 2.54) |
| kg | = | lbs * 0.45359 |
Please note:
div ist the division without remainder whereas mod returns
the remainder.
For instance:
7 divided by 3 equals 2 remainder 1 and therefore
7 div 3 = 2 and
7 mod 3 = 1
units:
| 1 foot | = | 30.48 cm |
| 1 inch | = | 2.54 cm |
| 1 lbs | = | 0.45359 kg |
| 1 cm | = | 0.3937 inches |
| 1 kg | = | 2.2046 lbs |