链表数据求和操作python 摘要:解题思路:注意事项:参考代码:L1 = []L2 = []while True: try: a,b = map(int,input().split()) L1.app…… 题解列表 2023年03月28日 0 点赞 0 评论 119 浏览 评分:0.0
python 链表数据求和 摘要:A=0B=0for i in range(10): a,b=map(int,input().split()) A+=a B+=bprint(str(A)+"+"+str(B)+"i"…… 题解列表 2023年03月03日 0 点赞 0 评论 110 浏览 评分:0.0
小南解题--链表数据求和操作--64ms 摘要:aa=[]n1=n2=0for i in range(10): a,b=map(int,input().split()) n1+=a n2+=bprint('%d+%di&#…… 题解列表 2022年08月27日 0 点赞 0 评论 143 浏览 评分:9.9
编写题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:s=c=0 while True: try: a,b=map(int,input().split()) s += a c += b excep…… 题解列表 2021年12月29日 0 点赞 0 评论 352 浏览 评分:9.9