iOS 除法,结果为小数格式
2019-06-19 本文已影响0人
RedRose丶
NSInteger width = 10;
NSInteger height = 3;
float scale = self_W * 1.0 / counts;
NSLog(@"%f", scale);
// (3.333333)
NSInteger width = 10;
NSInteger height = 3;
float scale = self_W * 1.0 / counts;
NSLog(@"%f", scale);
// (3.333333)