如何用for 循环 计算"8+88+888+8888......."前10项的和
long temp=8;long sum=0;//和for(int i=1;i<11;i++){ for(int j=0;j<i;j++)
{ sum+=temp*10^j; }}不知道对不对..没有测试..