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:
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!");
}
}
The output windows of this is with the Code in Editor:
Program in Editor! |
Output in Windows Environment |
If Any Program is found by Reader Please Write your Feed in Comment box!
ReplyDelete