What will be written to the standard output when the following program is run?()  <br /> public class Q8499 {  <br /> public static void main(String args[]) { <br /> double d = -2.9;  <br /> int i = (int) d; <br /> i *= (int) Math.ceil(d); <br /> i *= (int) Math.abs(d);  <br /> System.out.println(i); <br />  } <br />  }
A、12
B、18
C、8
D、9
E、27