摘要: #使用while循环输入1,2,3,5,6, ,8,9,10 ''' count =0 while count<10: count =count+1 if count==7: print(' ') else: print(count) ''' #求1-100以内所有数的和 '''count=0 sum=0 while count<100: ... 阅读全文
posted @ 2019-04-11 17:19 糖糖糖的唐 阅读(85) 评论(0) 推荐(0)