Hello world java program
Following is the program which prints hello world
public class Helloworld
{
public static void main(String[] args)
{
System.out.println(“hello world”);
}
}
•The above is a Helloworld program.
•The program prints helloworld to the screen.
•Class name should always start with capital letter
Hello world java program

Hello world java program

  • 1.
  • 2.
    Following is theprogram which prints hello world public class Helloworld { public static void main(String[] args) { System.out.println(“hello world”); } }
  • 3.
    •The above isa Helloworld program. •The program prints helloworld to the screen. •Class name should always start with capital letter