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[][]](https://s3.amazonaws.com/si.experts.images/answers/2024/09/66dceb756bcdb_22866dceb74d53d8.jpg)



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
Get step-by-step solutions from verified subject matter experts
