Sunday, July 5, 2015

Write First Java Program

Welcome Friends,
            I start this blog for Java Programming, Here You can learn The Java Programming Language.
Today you will see that how to write the first Java Program.


The Code of Program is Below.
           

class Welcome
{
  public static void main(String[] args)
    {
        System.out.println("Hello, World!");
    }
}

In this Section We will see the detail of the Program, Java to Fully Object Orientated Programming language. So it start with class and the first write Welcome class and in that main() method and then print the message Hello, World!

The output windows of this is with the Code in Editor:

editor code
Program in Editor!

output
Output in Windows Environment

1 comment:

  1. If Any Program is found by Reader Please Write your Feed in Comment box!

    ReplyDelete