蓝桥2015某题 计算数字x在进制p 下的各位数字之和 int calc(int x,int p) {int res=0;while(x){res+=x%p;//取当前位累加x/=p;//去掉最低位}return res; }