您的位置:首页 > 编程语言 > Java开发

test5.16

2015-09-22 16:05 501 查看
/*target:create a String array with initial;

 * then print all the members.

 */

public class Test16 {
public static void main(String[] args) {
String [] line={"Helle ","Java ","World !"};
for(int i=0;i<line.length;i++)
{System.out.print(line[i]);}
}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Java