這里為什么會(huì)報(bào)錯(cuò)呢。
public class HelloWorld {
??? public static void main(String[] args) {
?? ??? ?
?? ??? ?// 定義一個(gè)長(zhǎng)度為 3 的字符串?dāng)?shù)組,并賦值初始值
?? ??? ?String[] hobbys = { "sports", "game", "movie" };
?? ??? ?System.out.println("循環(huán)輸出數(shù)組中元素的值:");
?? ??? ?
?? ??? ?// 使用循環(huán)遍歷數(shù)組中的元素
?? ??? ?for(int=0;i<hobbys.length;i++){
?????????? System.out.println(hobbys[i]);
?? ??? ?}
}
2016-02-15
for循環(huán)里錯(cuò)了 int i=0;? 這種小錯(cuò)誤 都愛(ài)犯 仔細(xì)看就好了
2016-01-13
public class HelloWorld {
??? public static void main(String[] args) {
?????? ?
??????? // 定義一個(gè)長(zhǎng)度為 3 的字符串?dāng)?shù)組,并賦值初始值
??????? String[] hobbys = { "sports", "game", "movie" };
??????? System.out.println("循環(huán)輸出數(shù)組中元素的值:");
?????? ?
??????? // 使用循環(huán)遍歷數(shù)組中的元素
??????? for(int i=0;i<hobbys.length;i++){
?????????? System.out.println(hobbys[i]);
??????? }
??? }
}
錯(cuò)誤如下:
1、for循環(huán)中定義i的初值,要寫(xiě)成 int i=0;
2、你在結(jié)尾處少打了一個(gè)大括號(hào)};