摘要: 使用while循环输入 1 2 3 4 5 6 8 9 10 1 x = 0 2 while x < 10 : 3 x = x + 1 4 if x == 7 : 5 print(' ') 6 else : 7 print(x) 8 求1-100的所有数的和 1 x = 1 2 y = 0 3 wh 阅读全文
posted @ 2020-03-21 16:21 Langers_Lan 阅读(118) 评论(0) 推荐(0)