单选题 下列代码的执行结果是______。
public class ex53
{
public static void main (String args [] )
{
float t=9.of;
int q=5;
System.out.println ((t++) * (--q));
}
}
  • A. 40
  • B. 40.0
  • C. 36
  • D. 36.0
【正确答案】 D
【答案解析】