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 1 year has passed since last update.

Ruby countメソッドを使ったプログラムの作成

Posted at

特定の数値の個数を算出するプログラムを作成します

  • 条件1:配列の中の数字に対して、9の個数を数える
  • 条件2:数えた9の個数を出力する
def array_count9(nums)
  count = nums.count(9)
  puts "配列の中には9が#{count}個です"
end
# 呼び出し例
array_count9([1, 2, 9])

ターミナル出力結果は以下の通りです。

配列の中には91個です

解説

  • countメソッドについて
    引数に指定した数字に一致するものの個数を数え、その結果を返すメソッドです。

(例)

ary = [1, 2, 4, 2]
ary.count(2)
 # => 2

今回は、特定の数字「9」がいくつあるのかcountメソッドを使って数えてもらいます。

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?