30
ターミナルでテキストをアニメートする
ターミナルでテキストをアニメートする 目標 目標は、出力内の文字列「Hello world」を「アニメーション化」して、各文字が互いに大文字になるようにすることです。 プログラムは、各文字が大文字になった後に終了できます。 例えば; # Iteration 1 Hello world # Iteration 2 hEllo world # Iteration 3 heLlo world # Iteration 4 helLo world # Iteration 5 hellO world # Iteration 6 (note: it should capitilize the space char (ie: a break between iteration 5 and iteration 7) …