问答详情
源自:6-5 使用循环操作 Java 中的数组

求帮助,看一看哪里错了。

public class 在做一个 {

public static void main(String[] args) {

String[] hobbys = { "sports", "game", "movie" };

System.out.println("循环输出数组中元素的值:");

for(int i=0;i<hobbys.length;i++);{

System.out.println(hobbys[i]);

}

}


}

在myeclipse中运行不了,提示“i cannot be resolved to a variable"看到别的同学答案也是这么写。不知道能不能运行?求帮助,谢谢!

提问者:qq_秦皇岛崔哥_03852186 2016-12-23 21:40

个回答