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

1 Answer

4 votes

public class Hello {

public static void main( String [] args ) {

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

System.exit( 0 );

} }

answered
User Soufiane ROCHDI
by
8.2k points

No related questions found