swift

Swift4一些计算函数

2019-04-29  本文已影响0人  一把好刀
// 除数
let a = 7.6
// 被除数
let b = 1.34
// 余数
let remainder = a.truncatingRemainder(dividingBy: b)
let absolute = abs(-2)
assert(true)
let maxNum = max(10, 11,12,14,15)
let minNum = min(10, 11,12,14,15)
debugPrint("我是调试输出函数")
上一篇下一篇

猜你喜欢

热点阅读