妹子杀手的故事-题解(Python代码) ```pythonwhileTrue:a,b=map(int,input().strip().split())if(a==0andb==0):breakelse:print(a*b)```#MarkDown编辑器基本使用说明**如果这是您第一次使用MarkDown编辑器, 题解列表 2020年04月20日 0 点赞 0 评论 915 浏览 评分:0.0
简单python走起 摘要:解题思路:。。注意事项:。。参考代码:n=[list(map(int,input().split()))]i=0while n[i][0]>0 and n[i][1]>0: n.append(l…… 题解列表 2021年04月07日 0 点赞 0 评论 517 浏览 评分:9.9
妹子杀手的故事 摘要:while True: l,h = map(int,input().split()) if l == 0 and h == 0: break print…… 题解列表 2021年12月24日 0 点赞 0 评论 608 浏览 评分:0.0
a,b=0时跳出循环 摘要:解题思路:注意事项:参考代码:while True: a,b=map(int,input().split()) if a==0 and b==0: break prin…… 题解列表 2022年04月06日 0 点赞 0 评论 800 浏览 评分:0.0