未分类题对如下程序x=y=0 while True: x+=1 if not(x%2):continue elif x>100:break else:y+=x print(&
未分类题如下程序num=1 while num<=10: num+=1 print(num)的输出结果是()。