2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

rubyでの整数チェック方法

Last updated at Posted at 2020-06-17

今回は、変数の値が整数かどうかを確認する方法を書いていきます。
例として、aを整数か見たい変数として、以下のようにして見ます。

if a - a.to_i == 0
  puts "これは整数です"
else
  puts "これは非整数です"
end

ここでa.to_iという部分がありますが、これはa=1.1の場合だと整数に変換(小数点以下は切り捨て)という意味で、1(実数と計算する場合は、その小数点以下の数だけ0がつく→今だと1.0)になります。

a - a.to_i = 1.1 - 1.0 = 0.1 0とならない!)

そのため、平方根が実数かどうかみるには、この方法も一つありかなと思います。

2
1
2

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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?