1. 程式人生 > >CJV_I——helloworld中的字串陣列與簡易for迴圈

CJV_I——helloworld中的字串陣列與簡易for迴圈

package Welcome2Java;

public class Welcome {

	public static void main(String[] args) {
		String [] greeting = new String[3];
		greeting[0] = "Welcome to Core Java";
		greeting[1] = "by Cay Horstmann";
		greeting[2] = "and Gary Cornell";
		
		for(String g : greeting){
			System.out.println(g);
		}
	}

}