Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
初心者として、私はループ割り当てを与えられました。ループの 1 つは、最初に az、次に bz、次に cz などのアルファベットを個々の行に出力することです。
アルファベットを印刷しました
for(char c = 'a'; c <= 'z'; c++)
そして、printステートメントはアルファベット全体を生成しますが、別のforループをきちんと実装して開始文字を減らし、新しい文字列を別の行に出力する方法について途方に暮れています。