题解 1386: 妹子杀手的故事

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

妹子杀手的故事

摘要:while True:     l,h = map(int,input().split())     if l == 0 and h == 0:         break     print……

a,b=0时跳出循环

摘要:解题思路:注意事项:参考代码:while True:    a,b=map(int,input().split())    if a==0 and b==0:        break    prin……

简单python走起

摘要:解题思路:。。注意事项:。。参考代码:n=[list(map(int,input().split()))]i=0while n[i][0]>0 and n[i][1]>0:    n.append(l……