Write three versions of the HelloPrinter.java program that have different compiletime errors. Write a version that has a run-time error
belongs to collection: Java exercises
All Answers
total answers (1)
belongs to collection: Java exercises
total answers (1)
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: