Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データ型がDoubleあります。浮動小数点数の結果が必要なためですが、結果が負の場合、アルゴリズムがすべて壊れました。浮動小数点の符号なしデータ型はありますか?
Double
max数値がゼロ未満になるのを制限するために使用します。
max
let posOrZero = max(possiblyNegative, 0)
possiblyNegativeがゼロより大きい場合は、 max;の結果になります。それ以外の場合は、0 が返されます。
possiblyNegative