下列代码运行后,n 的打印结果是?( )
s = 1
n = 0
for i in range(3):
for j in range(3):
s = i * j
n = n + 1
if s == 4:
print('幸运数字')
break
print(n)
9
8
7
6