Project: Face Paint
Last updated
Was this helpful?
Was this helpful?
class Main {
public static void main(String[] args) {
/*
Dominic Rutkowski
12th Grade
*/
// This statement prints the hair
System.out.println(" /////");
// This statement prints the forehead
System.out.println(" | |");
// This statement prints the eyebrows and eyes
System.out.print(" | \" \" |\n | o o |\n");
// This statement prints the nose
System.out.print("(| ^ |)");
// This statement prints the mouth
System.out.println("\n | \\_/ |");
// This statement prints the chin and a blank line
System.out.println(" -----\n");
// This statement prints the caption
System.out.println("A \"drawing\" of a face");
}
}