Question: We have declared a method called putCaption with one char[l[ ] parameter art, two int parameters row and col, and a String parameter caption. TASK:

 We have declared a method called putCaption with one char[l[ ]parameter art, two int parameters row and col, and a String parametercaption. TASK: Fill in the body of the putCaption method such thatit will overlay caption onto art such that the first character of

We have declared a method called putCaption with one char[l[ ] parameter art, two int parameters row and col, and a String parameter caption. TASK: Fill in the body of the putCaption method such that it will overlay caption onto art such that the first character of caption is placed at art[row][col] and is surrounded by a frame of asterisks (*). HINT: The top-left corner of art is the point (0,0), which is art[0][0]. HINT: The first dimension of art is the vertical dimension. For example, art[o] is the first row of art. Gollum ASCII art originally created by Shanaka Dias Sample Input: Gollum 9 8 * ***************************************** * * * * T-'-'^ -- ;a/ e= J/-'" '. 1 ~_ ' -' ( ;-,. (~"'-. -. 1. ) '-- -; )' ( -.'") I ll | * * . .. * - * * * * 1.' -.-' " ; * '--'-, !!!! * --/ ( ;'.-' // /_'- * '"-" wiccc.' --.',' Tj\L\ * * * * .='/|\ * ***************************************** Sample Output: ***************************************** * * * * * * * L-'-'N ;a/ e= J/-'" '. 1 ~_ ' -' (ic,.. L~"'-. -. . ) '-- -; )' ( * * * * * * * * * * * * * * ********-' --!{"', IL *Gollum* -.-' " ; ! /********._'-, il --/ ( ;'.-' || /_'-.- '"-' ~' ccc.' --.',' Tj\L\ . ='/|\7 * * * * * * * * ***************************************** * * Write a program, test using stdin stdout Time limit: 8 seconds Memory limit: 256 MB N o 1 static void putCaption(char[][] art, int row, int col, String caption) { 2 || YOUR CODE HERE 3} N 00 1 point per submission. We have declared a method called putCaption with one char[l[ ] parameter art, two int parameters row and col, and a String parameter caption. TASK: Fill in the body of the putCaption method such that it will overlay caption onto art such that the first character of caption is placed at art[row][col] and is surrounded by a frame of asterisks (*). HINT: The top-left corner of art is the point (0,0), which is art[0][0]. HINT: The first dimension of art is the vertical dimension. For example, art[o] is the first row of art. Gollum ASCII art originally created by Shanaka Dias Sample Input: Gollum 9 8 * ***************************************** * * * * T-'-'^ -- ;a/ e= J/-'" '. 1 ~_ ' -' ( ;-,. (~"'-. -. 1. ) '-- -; )' ( -.'") I ll | * * . .. * - * * * * 1.' -.-' " ; * '--'-, !!!! * --/ ( ;'.-' // /_'- * '"-" wiccc.' --.',' Tj\L\ * * * * .='/|\ * ***************************************** Sample Output: ***************************************** * * * * * * * L-'-'N ;a/ e= J/-'" '. 1 ~_ ' -' (ic,.. L~"'-. -. . ) '-- -; )' ( * * * * * * * * * * * * * * ********-' --!{"', IL *Gollum* -.-' " ; ! /********._'-, il --/ ( ;'.-' || /_'-.- '"-' ~' ccc.' --.',' Tj\L\ . ='/|\7 * * * * * * * * ***************************************** * * Write a program, test using stdin stdout Time limit: 8 seconds Memory limit: 256 MB N o 1 static void putCaption(char[][] art, int row, int col, String caption) { 2 || YOUR CODE HERE 3} N 00 1 point per submission

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!