Recent Posts

Wednesday 11 June 2014

00:46

Write HELLO program in Java

As in previous post we have learnt how to use eclipse for java programming. So now you are ready to write your first java program.

public class hello { public static void main(String s[]) { System.out.print("Hello, Welcome to java World"); } }

write these codes in your Eclipse IDE and run it.

OUTPUT:

Hello, Welcome to java World



0 comments:

Post a Comment