✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
次のプログラムを実行したときに表示される文字列を答えなさい。
※プログラム中に出現する end="" は,改行せずに出力されるためのものである。
for i in range(13):
if i%4 == 0:
print("A", end="")
elif i%3 == 0:
print("B", end="")
else:
print("C", end="")
print("D")
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!