计算8+88+888+…前10项之和
计算8+88+888+…前10项之和
编写应用程序,使用for循环语句计算8+88+888+…前10项之和。
public class Demo09 {
public static void main(String[] args) {
// your code
long x=0,sum=0;
for(int i=0;i<10;i++){
x=x+(long)(8*(Math.pow(10,i)));
sum+=x;
}
System.out.println(sum);
}
}
本文来自博客园,作者:涂勇军,转载请注明原文链接:https://www.cnblogs.com/tuyongjun/p/16182806.html