Java: Print a face
Java Basic: Exercise-16 with Solution
Write a Java program to print a face.
Pictorial Presentation:

Sample Solution:
Java Code:
public class Exercise16 {
public static void main(String[] args)
{
// Display a pattern to create an ASCII art representation of a simple face
System.out.println(" +\"\"\"\"\"+ ");
System.out.println("[| o o |]");
System.out.println(" | ^ | ");
System.out.println(" | '-' | ");
System.out.println(" +-----+ ");
}
}
Sample Output:
+"""""+ [| o o |] | ^ | | '-' | +-----+
Flowchart:

Sample Solution (using array):
Java Code:
public class Main {
public static void main(String[] args) {
// Create an array to store lines of an ASCII art representation
String[] arra = new String[5];
// Populate the array with lines to form an ASCII art representation of a simple face
arra[0] = " +\"\"\"\"\"+ ";
arra[1] = "[| o o |]";
arra[2] = " | ^ |";
arra[3] = " | '-' |";
arra[4] = " +-----+";
// Use a loop to print each line of the ASCII art representation
for (int i = 0; i < 5; i++) {
System.out.println(arra[i]);
}
}
}
Flowchart:

Java Code Editor:
Previous: Write a Java program to swap two variables.
Next: Write a Java program to add two binary numbers.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join