133k views
0 votes
Write a complete program whose class name is hello and that displays hello, world on the screen.

User Chaosfire
by
5.3k points

1 Answer

4 votes

public class Hello {

public static void main( String [] args ) {

System.out.println( "Hello, world" );

System.exit( 0 );

} }

User Soufiane ROCHDI
by
5.3k points