美文网首页
iOS 四舍五入 进位 取整的计算函数

iOS 四舍五入 进位 取整的计算函数

作者: 江河_ios | 来源:发表于2018-02-01 16:18 被阅读0次

    #pragma mark === 四舍五入

    -(int)roundedRoundfWith:(float)numberToRound

    {

        int result;

       result = (int)roundf(numberToRound);

        NSLog(@"roundf(%.2f) = %d", numberToRound, result);

        //

        return result;

    }

    #pragma mark === 进位

    -(int)roundedCeilfWith:(float)numberToRound

    {

        int result;

        result = (int)ceilf(numberToRound);

        NSLog(@"roundf(%.2f) = %d", numberToRound, result);

        return result;

    }

    #pragma mark === 摸位 取整

    -(int)floatChangeToIntWith:(float)numberToRound

    {

        int result;

       result = (int)floorf(numberToRound);

        NSLog(@"roundf(%.2f) = %d", numberToRound, result);

        return result;

    }

    相关文章

      网友评论

          本文标题:iOS 四舍五入 进位 取整的计算函数

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