这样为什么不可以
public class HelloWorld {
public static void main(String[] args) {
// 定义一个数组,保存五名学生的成绩
int[] scores = { 78, 93, 97, 84, 63 };
// 输出数组中的第二个成绩
int s= scores[1];
System.out.println("数组中的第2个成绩为:"+s);
}
}
public class HelloWorld {
public static void main(String[] args) {
// 定义一个数组,保存五名学生的成绩
int[] scores = { 78, 93, 97, 84, 63 };
// 输出数组中的第二个成绩
int s= scores[1];
System.out.println("数组中的第2个成绩为:"+s);
}
}
2015-05-16
举报