以下哪段程序的运行结果无法打印1-100之间所有整数的和?( )
print(sum(range(1,100)))
i=1
he=0
while i<=100:
he+=i
i+=1
print(he)
for i in range(1,101):
print(sum(range(1,101)))