Question: java We have declared a method called crop with one char[][] parameter art and four int parameters leftX, rightx, topy, and bottomY. TASK: Fill in

java

 java We have declared a method called crop with one char[][]

parameter art and four int parameters leftX, rightx, topy, and bottomY. TASK:

Fill in the body of the crop method such that it returns

the result of cropping art in the rectangle bounded by the corners

We have declared a method called crop with one char[][] parameter art and four int parameters leftX, rightx, topy, and bottomY. TASK: Fill in the body of the crop method such that it returns the result of cropping art in the rectangle bounded by the corners (leftx, topY), (leftx, bottomy), (rightx, topy), and (rightx, bottomY), inclusive, wrapped in 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[0] is the first row of art. Gollum ASCII art originally created by Shanaka Dias Sample Input: 10 18 1 5 ***************************************** * * * * * T'' -- ;a/ e= J/-'" '. I ~ ' -' ' ;- ,. "'-. - 1. ) -' '-.- -; )' ( .' -.'") I ll | 1 I .-' --!{"', IL * * * * * IL * --Il- '"-' ~' * '-.-'-, !!! ;'.-' || /_'-.- ccc.' --.',' \j\L\ .='/|\7 * * * ***************************************** Sample Output: *********** *.';:;'. * */_' _' /\* *;a/ e= J/* *\ ~_ ( * L~"'_. *********** Write a program, test using stdin stdout Time limit: 8 seconds Memory limit: 256 MB 1 static char[][] crop(char[][] art, int leftx, int rightx, int topy, int bottomy) { 2 // YOUR CODE HERE NM N00 1 point ner submission We have declared a method called crop with one char[][] parameter art and four int parameters leftX, rightx, topy, and bottomY. TASK: Fill in the body of the crop method such that it returns the result of cropping art in the rectangle bounded by the corners (leftx, topY), (leftx, bottomy), (rightx, topy), and (rightx, bottomY), inclusive, wrapped in 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[0] is the first row of art. Gollum ASCII art originally created by Shanaka Dias Sample Input: 10 18 1 5 ***************************************** * * * * * T'' -- ;a/ e= J/-'" '. I ~ ' -' ' ;- ,. "'-. - 1. ) -' '-.- -; )' ( .' -.'") I ll | 1 I .-' --!{"', IL * * * * * IL * --Il- '"-' ~' * '-.-'-, !!! ;'.-' || /_'-.- ccc.' --.',' \j\L\ .='/|\7 * * * ***************************************** Sample Output: *********** *.';:;'. * */_' _' /\* *;a/ e= J/* *\ ~_ ( * L~"'_. *********** Write a program, test using stdin stdout Time limit: 8 seconds Memory limit: 256 MB 1 static char[][] crop(char[][] art, int leftx, int rightx, int topy, int bottomy) { 2 // YOUR CODE HERE NM N00 1 point ner 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!