首页 > TAG信息列表 > DBaver

求一组大数的平均数

如果用传统的方法,先把所有的数加起来再除以个数,求和时可能溢出,所以不能用这种方法。   #include <stdio.h> #include <string.h> #include "string" using namespace std; double getAver(unsigned int *p, int iSize) { double dbAver = 0; if(iSize == 0) {