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.

untilで繰り返し ❏Ruby❏

Last updated at Posted at 2019-11-19

初心に戻って基本を学ぶシリーズ第二弾
今日はuntil編です。

彼はアマノジャクなのでfalseの時のみ中の処理を実行します。

#使い方

until 条件式
  処理
end

#例

num = 50
until num < 0
  puts num
  num -= 1
end

50から0まで出力されます。

ポイントは0が出力されるということです。
0はfalse,-1からtrueです。

#途中で処理を抜けたい時はbreak

毎度おなじみbreakさんの登場です。

num = 50
until num < 0
  puts num
  num -= 1

  if num == 25
    break
  end
end

結果は50から26まで表示されます。


whileとuntil 時と場合によって使い分けられるエンジニアになりたいものです。

ではまた!

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?