Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153476 王一诺 计算平均数 Python3 Accepted 46 MS 3776 KB 201 2026-05-17 16:04:22

Tests(10/10):


Code:

a=list(map(int,input().split())) f=0 w,a666=0,0 while w<len(a): a666+=a[w] w += 1 avg = a666/len(a) print( "{:.2f}".format( avg )) for i in a: if i>avg: print(i,end=" ")