Tuesday, 5 January 2021

Java Hello world program

public class Helloworld {
	public static void main(String[] args)
	{
		System.out.println("Hello world");
	}

}

OUTPUT:
 
Hello world

No comments:

Post a Comment