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?

More than 3 years have passed since last update.

数値について

Posted at

#数値

数値は、数を表現する値です。文字列とは異なり、計算などを
行うことができます。

数値は文字列とは違って、**ダブルクォーテーション"**や
**シングルクォーテーション'**も必要ありません。
以下は数値を使った数の表し方の例です。

【例】Rubyファイル
# 整数
10

# 負の値
-10

# 小数
3.14

数をダブルクオーテーションで囲むと数値ではなく文字列として扱われてしまいます。
プログラミングでは文字列の"10"と数値の10は別物です。数値は計算ができますが、文字列は計算ができません。

#irbで以下のコードを実行してみましょう
irbでRubyの数値を記述し、実行してみましょう。

irb
# 数値を書いてエンターキーで実行
irb(main):001:0> 12345

# 続けてこのように表示されれば成功
=> 12345

#まとめ

数値とは、数を表現する値のこと。

#####以上。

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?