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

whileとdo-while条件式の違い

Posted at

while文
ブロックを実行する前に条件式を評価する
ブロックが実行されないことがある

do-whilse文
ループの最低回数
ブロックを実行した後に条件式を評価する
ブロックが最低1回は実行される

do {
  繰り返す処理
 } while (条件式);

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