2
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 5 years have passed since last update.

Java条件分岐 : switch文の作成と勉強方法

Last updated at Posted at 2019-06-01

・本日は、条件分岐:switch文を取り扱ってみました。

switch文(switch statement)とは、多くの選択肢から1つを選んで実行することを言います。

「switch文」ではいくつか条件分岐がある場合、「if文」よりスッキリ書くことができます。

また右辺と左辺が等しいか比較する場合に使うことができます。

条件分岐の書き方は、「switch (判定したい変数) { case 分岐させたい値 : 処理 break ; }」このように書きます。

判定したい変数「group」を「()」中に書き、 その後に「{}(ブロック)」の中に、

「case」で「group」の変数によって分岐させたい値を書き「: (コロン)」で閉じ、
「group」が「海賊」だった場合の処理を書きます。

「case」の後の「: (コロン)」はいつも書いている「; (セミコロン)」ではないので覚えておいてください。

また、「break ;」はよく書き忘れてしまうので注意しましょう。

条件分岐.png

このようにいくつかある条件分岐の場合は「switch文」を使うと「if文」よりスッキリ記述ことができます。

27番目、どうしてダメなんでしょう、、(笑)

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

勉強方法
丁寧に解説しているプログラミングの動画を見る。

真似をする。

動画だと実践式で分かりやすいです。

それでは、今日もお疲れさまでした。

2
0
4

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