编写题解 3000: 交换值 摘要:解题思路:注意事项:参考代码:a=input().split(' ')b=a[1]c=a[0]print(b,c)…… 题解列表 2025年08月09日 1 点赞 0 评论 53 浏览 评分:10.0
不懂可评论 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split()) a,b=b,a print(a,b)…… 题解列表 2024年11月15日 0 点赞 0 评论 286 浏览 评分:0.0
3000: 交换值 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split())c = a ; a = b ; b = cprint(a,b)…… 题解列表 2023年02月07日 0 点赞 0 评论 296 浏览 评分:0.0