score是一个整数数组,有五个元素,已经正确初始化并赋值,仔细阅读下面代码,程序运行结果是( ) temp = score[0]; for (int index = 1;index < 5;index++) { if (score[index] < temp) { temp = score[index]; } }
A. 求最大数
B. 求最小数
C. 找到数组最后一个元素
D. 编译出错
以下由do-while语句构成的循环执行的次数是( ) int k = 0; do { ++k; }while ( k < 1 );
A. 一次也不执行
B. 执行1次
C. 无限次
D. 有语法错,不能执行
接口的所有成员方法都具有()修饰的特性。
A. private,final
B. public, abstact
C. static protected
D. static
下列不能作为switch表达式参数的数据类型是:
A. int
B. char
C. long
D. short