Monday, 8 September 2014

Hello World Program in java.


This is a simple Hello world program in Java. Java Tut 01. How to write hello world program in Java.


"Hello, world!" program is a computer program that outputs "Hello, World!" (or some variant thereof) on a display device. Because it is typically one of the simplest programs possible in most programming languages, it is by tradition often used to illustrate to beginners the most basic syntax of a programming language. It is also used to verify that a language or system is operating correctly.
Source: http://en.wikipedia.org/wiki/%22Hello,_world!%22_program
Code:

package HelloWorld;
public class Main {

public static void main(String[] args) {
System.out.println("Hello World!");
}
}
Unknown Web Developer

Morbi aliquam fringilla nisl. Pellentesque eleifend condimentum tellus, vel vulputate tortor malesuada sit amet. Aliquam vel vestibulum metus. Aenean ut mi aucto.

No comments :

Post a Comment