Showing posts with label A Simple JAVA Program. Show all posts
Showing posts with label A Simple JAVA Program. Show all posts

Monday, January 25, 2016

A Simple JAVA Program

// This program prints Welcome to JAVA!
public class Welcome {
public static void main ( String[] args ) {
System.out.println(“ Welcome to Java!” );
}
}

Creating and Editing

You can use WordPad, NotePad, etc.

Creating, Compiling and Running Programs



Trace a Program Execution