菜de嚣张 发表于 2021-3-1 18:15:20

求助!

qiuyouzhi 发表于 2021-3-1 18:23:38

c1, c2, res = 0, 0, 0
while (n := int(input())):
    if n > 0:
      c1 += 1
    else:
      c2 += 1
    res += n

print(res // (c1 + c2), c1, c2, sep = '\n')

jackz007 发表于 2021-3-1 18:29:53

c , n , p , s = 0 , 0 , 0 , 0
while True:
    x = int(input())
    if x :
      if x > 0 :
            p += 1
      else :
            n += 1
      c += 1
      s += x
    else:
      break
print(s // c)
print(p)
print(n)
页: [1]
查看完整版本: 求助!