Untitled

 avatar
unknown
plain_text
a year ago
584 B
28
Indexable
weight format

x lb y oz
=
X.Y


NOTE!! X.1 != X.10
    -> X.1 = X lb 1 oz
    -> X.10 = X lb 10 oz

The right side defines the ounce, its not a math format
so make sure u dont think 1.1 means 1 lb and 10 oz
                          that would be 1.10 (but in math 1.1 = 1.10 - but we are just using the right hand side different so dont get confused!!)
    

We will convert lb.oz format to strictly oz format

How to convert to oz:
    (16 * X) + Y

EXAMPLE:
A1 = 0.13
   = (16 * 0) + 13
   = 13 oz

A11 = 1.10
    = (16 * 1) + 10
    = 26 oz

J8 = 1.2
   = (16 * 1) + 2
   = 18 oz
Editor is loading...
Leave a Comment