更多JAVA程序设计试题
- 1下列关于this的说法中,错误的是( )
- 2类中的一个成员方法被下面哪个修饰符修饰,该方法只能在本类被访问?
- 3下列关于数组最值的描述中,错误的是
- 4假设主类包名为rose.flower;,这个程序存储在d:\chengxu\rose\flower目录结构中下,运行程序时,应按哪个格式来运行?
- 5下列数据类型中,哪种数据类型转为int类型需要进行强制转换
- 6public class Example01 {public static void main(String[] args) {int[] arr = { 4, 1, 6, 3, 9, 8 };// 定义一个数组int minIndex = 0;//初始时设第1个角标处的值为最小值for (int i = 1; i < arr.length; i++) {if (______) {minIndex = i;}}System.out.println("数组中的最小值为:"+arr[minIndex]);}}请问在上述程序的横线处填写下列哪段代码,可以求到数组的最小值