如何用for累计叠加
//用while 输出
public class HelloWorld {
public static void main(String[] args) {
int sum=0;
int i=1;
int n=10;
while (i< n){
sum=sum+i;
i++;
}
System.out.println("和为:"+ sum);