Welcome.java

来源:互联网 发布:matlab 离散数据滤波 编辑:程序博客网 时间:2024/06/05 20:49

//first Java program Welcome.java
public class Welcome
// Welcome is class,the first letter of the class's name should be capitalization 
{
   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 (int i = 0; i < greeting.length; i++)
         System.out.println(greeting[i]);
   }
}

Execute

by Cay Horstmann
and Gary Cornell

Process completed.

原创粉丝点击