美文网首页
oc小数精度问题

oc小数精度问题

作者: Jamesholy | 来源:发表于2017-08-21 09:26 被阅读6次

    // 将小数保留两位小数 并且后面的零不显示
    NSString *strMoney = [NSString stringWithFormat:@"%.2f",money];
    NSDecimalNumber *num1 = [NSDecimalNumber decimalNumberWithString:strMoney];
    NSLog(@"%@",num1);

    相关文章

      网友评论

          本文标题:oc小数精度问题

          本文链接:https://www.haomeiwen.com/subject/gzfcdxtx.html