ios,swift2020. 1. 30. 10:22

[ios]swift percent 보여주는 방법

 

static func getDiscount(target : Int , compare : Int) -> Int

    {

        if target >= compare

        {

            return 0

        }

        

        let result = (((compare - target) * 100) / compare)

        

        return result

    }

Posted by thdeodls85