十年1
2016-06-15 09:44
到底哪里错了? public class HelloWorld { public static void main(String[] args) { // 定义一个数组,保存五名学生的成绩 int[] scores = { 78, 93, 97, 84, 63 }; // 输出数组中的第二个成绩 System.out.println("数组中的第2个成绩为:" +scores[1] ); } }
没有错,没通过是因为网站的原因。多等一会,多提交几次就好了
没有错啊,
package com.imooc;
public class test {
public static void main(String[] args) {
// 定义一个数组,保存五名学生的成绩
int[] scores = { 78, 93, 97, 84, 63 };
// 输出数组中的第二个成绩
System.out.println("数组中的第2个成绩为:" +scores[1] );
}
}
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题