2020年11月25日

摘要: 1、使用while循环输入 1 2 3 4 5 6 8 9 10 count=1 while count < 11: if count == 7: count=count+1 continue print(count) count=count+1 2、求1-100的所有数的和 count=1 tem 阅读全文
posted @ 2020-11-25 15:24 Hzzhbest 阅读(130) 评论(0) 推荐(0) 编辑