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.

Switch構文とWhile構文を学習しました

Posted at

#前回のあらすじ
・if構文を使って、変数がうるう年か判定するプログラムを組んだぞ

#今日やったこと
・Switch構文について学んだ
Switch構文とは、条件となる変数の値によって、最適な場所へぴょんぴょんジャンプして上から下へと処理を行うもの。

case n:
 total +=n;
/*ここにbreak;を挿入すれば下の処理に移動しない*/
case m:
 total +=m;

・While構文について学んだ
While構文とは、条件をチェックして、その条件が成立する間は、繰り返しぐるぐるっと処理を行う構文
(今回の教科書『新人プログラマのためのjQuery Webアプリケーション開発講座』)

#困ったこと
・難しいことをやっているからか、プログラミングを知らない人に説明できるほどの理解はできなかった
でも、自分では何が行われているのか理解できた。

#感想
構文の勉強は地道だなと感じた。今の学習がものづくりに活かせる日は来るのだろうか…

#次回の目標
次はfor構文の使い方を理解するぞい

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?