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

前端 未结 3 437
情话喂你
情话喂你 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条回答
  •  Happy的楠姐
    2021-01-11 20:07

    Even modulo works for float, use :

    fmod()

    You can use this way too...

    float totalHeight = 5.122222;
    float myFeet = (int) totalHeight; //returns 5 feet
    float myInches = fmodf(totalHeight, myFeet);
    NSLog(@"%f",myInches);
    

提交回复
热议问题