题解 | #N个数之和#
N个数之和
https://www.nowcoder.com/practice/b007744eb43b4f7b95d9e87de01528db
shit = input() map = map(int,input().split()) sum = 0 for i in map: sum += i print(sum)#题解#
N个数之和
https://www.nowcoder.com/practice/b007744eb43b4f7b95d9e87de01528db
shit = input() map = map(int,input().split()) sum = 0 for i in map: sum += i print(sum)#题解#
相关推荐