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.

特定条件のみに呼応するプログラム作成

Posted at

問題

今日の曜日を表示するコードをDateクラスを使用して記述してください。

ただし、金曜日だった場合だけ以下のように表示の内容を変えてください。

(出力内容)
「今日は月曜日」
「今日は金曜日だ !!!」
スクリーンショット 2022-11-25 19.43.00.png

解答

スクリーンショット 2022-11-25 19.44.15.png
 
 
 

解説

(1行目)Dateクラスをライブラリから呼び出す。

(3行目)wdayメソッドを用いて曜日を
 0(日曜日)から6(土曜日)の整数にしたときの
「今日」の値を取得する。

(4行目)配列daysを定義し、
 日曜日(0番)〜土曜日(6番目)まで文字列を格納する。

(6〜10行目)dayの値が5(金曜日)か否かで条件分岐させる。
 例えば、今日が金曜日だった場合はday=5となり、
 daysの5番目の値である金曜日が出力されるようになる。

反省

自分で考察する事ができなかったので、考察するだけの知識を
身につける事ができていないです。
次回は今回の知識を活かしプログラムできるよう挑戦します。

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?