Q:

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

0

Write three versions of the HelloPrinter.java program that have different compiletime errors. Write a version that has a run-time error

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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!";
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

How do you discover syntax errors? How do you disc... >>
<< What does this program print? Pay close attention ...