This is the sample program to print hello world program in java.
- If you use Eclipse IDE then rightClick->run us->java application.
- If you use notepad then windows->rightClick->runas->cmd->javac Helloworld.java->java Helloworld .java
- package com.sample;
- public class Helloworld {
- public static void main(String[] args) {
- System.out.println("Hello World!!!");
- }
- }
No comments:
Post a Comment