0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[Ruby] 小数点の(切り上げ|切り捨て|四捨五入)

Posted at

はじめに

小数点操作に便利な組み込みメソッドの覚え書きです。

切り上げ ceil

irb
>> 1.2.ceil
=> 2

>> 1.052.ceil(2) # 引数に桁を指定
=> 1.06

切り捨て floor

irb
>> 1.2.floor
=> 1

>> -1.2.floor # 負の数の場合、絶対値が大きい方に丸め込む
=> -2

>> 1.059.floor(2)
=> 1.05

四捨五入 round

irb
>> 1.4.round
=> 1

>> 1.5.round
=> 2

>> 1.006.round(2)
=> 1.01

イメージ

47.jpg

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?