iOS objective-C: using modulo on a float to get “inches” from Feet

前端 未结 3 417
情话喂你
情话喂你 2021-01-11 19:36

I am trying to make a simple objective-C height converter. The input is a (float) variable of feet, and I want to convert to (int) feet and (float) inches:

f         


        
3条回答
  •  悲哀的现实
    2021-01-11 20:08

    As answered earlier, subtracting is the way to go. Just remember to convert the one tenths of feet to inches by multiplying with 12:

    float totalHeight = 5.122222;
    int myFeet = (int) totalHeight;
    float myInches = (totalHeight - myFeet) * 12;
    

提交回复
热议问题