logo

Crowdly

次のプログラムを実行したとき表示される文字列を答えなさい。 a=0 while a < 10: if a%3 == 0: print...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

次のプログラムを実行したとき表示される文字列を答えなさい。

a=0

while a < 10:

if a%3 == 0:

print("A", end="")

elif a%3 == 1:

a+=1

print("B", end="")

continue

elif a%3 == 2:

print("C", end="")

a+=1

More questions like this

Want instant access to all verified answers on nakajun.net?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!