while True:n=int(input())if n==-1:break c+=1 s+=n print("%d\n%.6f" %(c,s/c if c else 0))源码截图:运行结果截图:
用while循环语句做:输入一组正整数,以-1作为结束标记,统计整数的个数,并计算其平均值。