编写程序,显示1+2+3+4+5+6+7+8+9的结果
public class Homework006 { public static void main(String[] args) { int n=9; { System.out.println((n*(1+n))/2); } }}