Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Java

image text in transcribed

image text in transcribed

image text in transcribed

image text in transcribed

We have declared a method called putCaption with one char[][] 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[@] is the first row of art. Gollum ASCII art originally created by Shanaka Dias Sample Input: Gollum 9 8 ***************************************** * * * * * * .';:;'. T_'_' . ;a/ e= J/-'" '. \~_ ' -' (;-,. L~"'-. -. . ) ,'-' '-:- -; )' ( .'.' -.'") Ill. 1-' --\{"', IL I.' . -.-' " ;) .-'-, III --/ ( ;' .-' || /_'-. *"-' ~' ccc.' - \j\L! .='/17 * * * * * * * * ***************************************** Sample Output: ***************************************** * * .';:;'. |_ ' /\ -- ;a/ e= J/-'" '. * * * * * L~"'-. - 1./ ). '-' '-.- -; )' ( ' .'") I ll I ********-' --\{"', I *Gollum* -.-' " ; | ********._'-, T IC -- ( ,;' -' / / _'-.- " ~' ccc. --.',' Tj\ll .='/17 * * * * * * * ***************************************** Write a program, test using stdin stdout Time limit: 8 seconds Memory limit: 256 MB 1 static void putCaption(char[][] art, int row, int col, String caption) { 2 || YOUR CODE HERE M L N 00 1 point per submission. Submit

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Pro Database Migration To Azure Data Modernization For The Enterprise

Authors: Kevin Kline, Denis McDowell, Dustin Dorsey, Matt Gordon

1st Edition

1484282299, 978-1484282298

More Books

Students also viewed these Databases questions

Question

How do you add two harmonic motions having different frequencies?

Answered: 1 week ago

Question

assess the infl uence of national culture on the workplace

Answered: 1 week ago