摘要: #输出1 2 3 4 5 6 8 9 10n=1while n < 11: if n!=7: print(n) n = n + 1#求1到100所有数的和n=1t=0while n<101: t=n+t n=n+1print(t)#输出1到100内的奇数n=1while n<101: if n % 阅读全文
posted @ 2018-05-20 18:35 tootise 阅读(279) 评论(0) 推荐(0)