如下Python代码执行其输出是 3。
count = 0 i = 0 while i < 3: j = 0 while j < 3: if i + j >= 3: count += 1 j += 1 i += 1 print(count)
正确
错误