Write three versions of the HelloPrinter.java program that have different compiletime errors. Write a version that has a run-time error
1) This version omits a semicolon after the println statement and omits a curly brace to close the class:
public class HelloPrinter1 { public static void main(String[] args) { System.out.println("Hello, World!") }
2) This version omits quotes around the Hello, World! statement and adds a semicolon after the main declaration:
public class HelloPrinter2 { public static void main(String[] args); { System.out.println(Hello, World!); } }
3) This version omits parenthesis around the println argument and omits the static reserved word in the main declaration:
public class HelloPrinter3 { public void main(String[] args) { System.out.println "Hello, World!"; }
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
1) This version omits a semicolon after the println statement and omits a curly brace to close the class:
2) This version omits quotes around the Hello, World! statement and adds a semicolon after the main declaration:
need an explanation for this answer? contact us directly to get an explanation for this answer3) This version omits parenthesis around the println argument and omits the static reserved word in the main declaration: