1000: [竞赛入门]简单的a+b 摘要:参考代码:while True: try: a,b=map(int,input().strip().split()) print(a+b) except: break…… 题解列表 2023年02月11日 0 点赞 0 评论 1153 浏览 评分:9.9
简单的a+b(Python代码) 摘要:解题思路:while实现多组数据输入测试,用map函数实现输入,print语句输出注意事项:参考代码:while True: try: a,b=map(int,input().st…… 题解列表 2022年07月27日 0 点赞 1 评论 2526 浏览 评分:9.9
简单的a+b题解 摘要:解题思路:注意事项:参考代码:while True:#while True 语句中一定要有结束该循环的break语句,否则会一直循环下去的 try: #Python 中,用try except…… 题解列表 2021年09月12日 0 点赞 0 评论 1579 浏览 评分:9.0
[竞赛入门]简单的a+b-题解(双题解,Python代码) 摘要:题解一: ```python while True: #while True 语句中一定要有结束该循环的break语句,否则会一直循环下去的 try: #Python 中,用…… 题解列表 2020年09月26日 0 点赞 0 评论 2474 浏览 评分:8.7
[竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:while True: a,b = map(int,input().split()) if a > 2**10 or b > 2**10: br…… 题解列表 2022年01月16日 0 点赞 0 评论 662 浏览 评分:8.5
[竞赛入门]简单的a+b-题解(Python代码) 摘要:```python while True: num1=list(map(int,input().split())) n1=len(num1) sum1=0 f…… 题解列表 2020年04月01日 0 点赞 0 评论 2216 浏览 评分:8.0
1000: [竞赛入门]简单的a+b (python代码) 摘要: while True: #while True 语句中一定要有结束该循环的break语句,否则会一直循环下去的 try: #Python 中,用try except语句块捕获…… 题解列表 2023年07月09日 0 点赞 0 评论 356 浏览 评分:8.0
1000: [竞赛入门]简单的a+b(Python代码) 摘要:####**解题思路:** 1.**输入**a,b,用**map**函数实现 2.**while**实现**循环** 3.**try except**实现出现异常时**退…… 题解列表 2022年07月22日 0 点赞 0 评论 1225 浏览 评分:8.0
输出a+b - python 摘要:解题思路:首先input输入两个int型整数,然后求和打印出来注意事项:while可以一直循环参考代码:while True: a,b = map(int,input().split()) …… 题解列表 2021年03月26日 0 点赞 0 评论 756 浏览 评分:7.8
[竞赛入门]简单的a+b-题解(Python代码) 摘要:```python #这种方式输入了2个int型的数字,split()代表以空格隔开。 while True: a,b = map(int,input().split()) p…… 题解列表 2021年01月11日 0 点赞 0 评论 800 浏览 评分:7.5