第32245题 单选
运行以下Python代码,最终输出的result值是多少?
result = 0
for i in range(3):
    for j in range(2):
        result += i + j
print(result)
A

9

B

6

C

12

D

3

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析