Write a program that prints three items, such as the names of your three best friends or favorite movies, on three separate lines.
Solution:
import static java.lang.System.out;
class P0111
{
public static void main(String[] args)
{
out.println("Avatar");
out.println("The Da Vinci Code");
out.println("The Hobbit");
}
}