Discussion 解説
The round()
method uses the .to
rounding rule, where a value halfway between two integral values is rounded to the one with greater magnitude. The following example rounds several values using this default rule:
round()
メソッドは.to
丸め規則を使います、そこでは2つの整数値の間の中ほどの値はより大きい規模を持つものへと丸められます。以下の例はいくつかの値をこの初期設定での規則を使って丸めます:
To specify an alternative rule for rounding, use the round(_:)
method instead.
丸めのための代替の規則を指定するには、round(_:)
メソッドを代わりに使ってください。