The following program will not compile because the lines have been mixed up. public static void main(String[]

Question:

The following program will not compile because the lines have been mixed up. 

public static void main(String[] args)
}
// A crazy mixed up program
public class Columbus
{
System.out.println("In 1492 Columbus sailed the ocean blue.");
{
}

When the lines are properly arranged, the program should display the following on the screen:

In 1492 Columbus sailed the ocean blue.

Rearrange the lines in the correct order. Test the program by entering it on the computer, compiling it, and running it.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: