Overview
Pair Programming:
This exercise is reserved for pair programming in the live lab sessions.
Please skip it when doing the exercises individually.
This exercise is reserved for pair programming in the live lab sessions.
Please skip it when doing the exercises individually.
In this question, you will write a program that prints an ‘ASCII-art’ face to the screen. When your program is called, it should print out the following:
/// /////// | o o | @| n |@ | ~~~ | -----
Write your program to carry out this task. Your class should be called FacePrinter. In this exercise, you do not need to worry about taking input from the command line.
An automated test has been created for this exercise: FacePrinterTest.java.