double avg = sum/4;
这块为什么要用double类型呢?
怎么不使用int类型呢
为了结果的精确,比如
int sum=98,int avg = sum /4;
结果是24,如果是
int sum=98,double avg = (doublke)sum /4;
结果是24.5