题解 2794: 求平均年龄

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

编写题解 2794: 求平均年龄

摘要:解题思路:注意事项:参考代码:data_list = list(map(int, input().split()))  # 第一行输入的数据 age_sum = 0  # 年龄总和 count =……

编写题解 2794: 求平均年龄

摘要:解题思路:注意事项:需要注意多行输入的单行输入的情况参考代码:list1 = list(map(int,input().rsplit()))n = list1[0]list1.pop(0)while ……