运行以下程序,输出为()
cnt = 0 for i in range(2,5): for j in range(1,4): if i % j == 0: cnt += 1 print(cnt)
5
6
4
7