第15题: [单项选择]下列程序的执行结果是( )。
public class Testgg {
public static void main(String args[]) {
float t=9.0f;
int q=5;
System.out.println((t++)*(- -q));
}
}
A. 40 B. 36 C. 36 D. 40 参考答案:C 答案解析:定义float t=9.0f和int q=5;而程序要求输出(1++)*(- -q)的值,这样结果一定是一个浮点型的数。注意:选项A)40,选项B)36都错误的认为结果应是int型的,而选项D)40.