题解 | #牛牛数数字#
牛牛数数字
https://www.nowcoder.com/practice/79e8af6ecd184a1db3c1264c703b8e02
a = list(map(int,input().split())) b =len(a) for i in range(0,b): if a[i] == 3: continue elif a[i] == 8: break else: print(a[i])
牛牛数数字
https://www.nowcoder.com/practice/79e8af6ecd184a1db3c1264c703b8e02
a = list(map(int,input().split())) b =len(a) for i in range(0,b): if a[i] == 3: continue elif a[i] == 8: break else: print(a[i])
相关推荐