public class HelloWorld {
public static void main(String[] args) {
// 定义一个长度为 3 的字符串数组,并赋值初始值
String[] hobbys = { "sports", "game", "movie" };
System.out.println("循环输出数组中元素的值:");
// 使用循环遍历数组中的元素
for(int i=0;i<hobbys.length;i++);{
System.out.println(hobby[i]);
}
}
}
for(int i=0;i<=hobbys.length-1;i++){
System.out.println(hobbys[i]);
}//你在for循环里少了hobbys的长度减1和<=,for循环外面不用分号,还有输出的时候你的hobby应该是hobbys
length后多了一个分号
public class HelloWorld {
public static void main(String[] args) {
// 定义一个长度为 3 的字符串数组,并赋值初始值
String[] hobbys = { "sports", "game", "movie" };
System.out.println("循环输出数组中元素的值:");
// 使用循环遍历数组中的元素
for(int i=0;i<hobbys.length;i++);{//length后多了一个分号
System.out.println(hobby[i]);
}
}
}
多了个分号,正解
System.out.println(hobby[i]); ->hobbys
for(int i=0;i<hobbys.length;i++) ; { //多了个分号
System.out.println(hobby[i]);
}