test5.16

来源:互联网 发布:慧科新闻数据库 编辑:程序博客网 时间:2024/06/05 15:02
/*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]);}
}
}
0 0
原创粉丝点击