阅读下列程序:public class ArithmaticOperand{ public static void main(String args[]) { int a=5+4; int b=a*2; int c=b/4; int d=b-c; int e=-d; int f=e%4; int g=3; int h=g++; int i=++g; double j=18.4; double k=j%4; System.out.println(" a = " + a); System.out.println(" b = " + b); System.out.println(" c = " + c); System.out.println(" d = " + d); System.out.println(" e = " + e); System.out.println(" f = " + f); System.out.println(" g = " + g); System.out.println(" h = " + h); System.out.println(" i = " + i); System.out.println(" j = " + j); System.out.println(" k = " + k); }}运行程序:java ArithmaticOperand其结果为:a = b = c = d = e = f = g = h = i = j = k =