公共靜態void main(String[] args) {
//1.求A+aa+AAA+…+A…A(n)的和,其中A是1~9之間的整數。比如a=3,n=4時,求3+33+333+3333。
int n = 4;
int a = 3;
長和= 0;
int temp = 0;
for(int I = 0;我& ltn;i++) {
temp = temp * 10+a;
總和+=溫度;
//打印出每個數字。
system . out . println(temp);
}
system . out . println(sum);
}
}