Answered step by step
Verified Expert Solution
Question
1 Approved Answer
2) [15 points] You've been hired by Braille Buddies to write a Java console application that prints the equivalent Braille of the text entered by
2) [15 points] You've been hired by Braille Buddies to write a Java console application that prints the equivalent Braille of the text entered by the user. Braille is a special language used by the blind to read text. It uses a 3x2 grid of dots to represent different characters. Here are the grid definitions for Grade 1 Braille 1 number capital sign comma period arrangement and numbering 1 of dots in the Braille cel #5 aposhyphen semicolonand trophe the To specify an upper case letter, the "capital sign" grid defined above precedes a lower case letter. Use the following three-dimensional array declaration to represent the Braille grid definitions. The first dimension is the letter, the second dimension is the row, and the third dimension is the column of a spot in a grid. A one (1) indicates a big spot while a zero (0) indicates a small spot: final int[] [l ll BRAILLE_GRIDS - 1, 0], t 0, O, o, o>, // 'a' -0 11, 0, 10, 1}, 1 0, 0, I/ 'e'-4 1, 1, 1 1, O>,1 0, 0, Il 'f' - 5 1, 0, 1 0, 0, 1, O>, // 'k' - 10
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started